/* _content/BlazorServerAdapter/Pages/Views/Controls/LoadingSpinner.razor.rz.scp.css */
/* LoadingSpinner.razor.css */

/*.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: red;
   
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 8px solid #ccc;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}*/
/* _content/BlazorServerAdapter/Pages/Views/CountryCodeView.razor.rz.scp.css */
/*.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 999;
}

.popup-content {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid gray;
    padding: 5px;
    z-index: 1000;
}
*/
/* _content/BlazorServerAdapter/Shared/MainLayout.razor.rz.scp.css */
/* Main container styling */
.main-container[b-o0ujxn2zix] {
    width: 100%; /* Full width of the page */
    text-align: center; /* Center-align content */
    margin: 0 auto; /* Center container horizontally */
    padding: 20px; /* Add padding around content */
    box-sizing: border-box; /* Include padding in width/height */
}

/* Full-width image styling */
.full-width-image[b-o0ujxn2zix] {
    width: 100%; /* Make the image span the full width of the container */
    height: auto; /* Maintain aspect ratio */
    max-width: 1200px; /* Optional: Set a maximum width to avoid stretching on large screens */
    display: block; /* Ensures no extra spacing below the image */
    margin: 0 auto; /* Center the image */
}

.page[b-o0ujxn2zix] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-o0ujxn2zix] {
    flex: 1;
}

.sidebar[b-o0ujxn2zix] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-o0ujxn2zix] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-o0ujxn2zix]  a, .top-row .btn-link[b-o0ujxn2zix] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-o0ujxn2zix] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-o0ujxn2zix] {
        display: none;
    }

    .top-row.auth[b-o0ujxn2zix] {
        justify-content: space-between;
    }

    .top-row a[b-o0ujxn2zix], .top-row .btn-link[b-o0ujxn2zix] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-o0ujxn2zix] {
        flex-direction: row;
    }

    .sidebar[b-o0ujxn2zix] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-o0ujxn2zix] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-o0ujxn2zix], article[b-o0ujxn2zix] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
