/* Fullscreen overlay */
#spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    display: none !important;
}

#spinner-container.active {
    display: flex !important;
}

/* Loading image */
.spinner img {
    width: 80px; /* Adjust size as needed */
    height: 80px;
}

/* Loading text */
.loading-text {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

.alert {
    padding: 15px 30px !important;
}
