﻿/* Styles for the loader overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent gray */
    z-index: 9999; /* Ensure the loader is on top of other content */
}

/* Styles for the loader */
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite; /* Apply rotation animation */
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -60px; /* Half of width */
    margin-top: -60px; /* Half of height */
}

/* Keyframes for the rotation animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Disable button style */
button[disabled] {
    cursor: not-allowed;
}