/* Add application specific styles here */
/* ·Îµù ¿À¹ö·¹ÀÌ ½ºÅ¸ÀÏ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* ¹ÝÅõ¸í ¹è°æ */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    border: 0.3rem solid #f3f3f3;
    border-top: 0.3rem solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* site.css */
.form-width {
    max-width: 400px;
}

.login-container {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.login-container {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* wwwroot/css/site.css */
.sunday {
    background-color: #f1d4d4;
}

.saturday {
    background-color: #f2f7fc;
}