/* _content/AvaBeshoyTayoSystem/Components/AdminLoginComponent.razor.rz.scp.css */
body[b-dsix2iob73] {
    background-color: #f8f9fa;
}

.login-container[b-dsix2iob73] {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    transition: box-shadow 0.3s ease-in-out;
}

.login-container:hover[b-dsix2iob73] {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.login-header[b-dsix2iob73] {
    margin-bottom: 20px;
    color: #343a40;
}

.form-control[b-dsix2iob73] {
    border-radius: 5px;
    margin-bottom: 15px;
}

.btn-primary[b-dsix2iob73] {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 5px;
}

.btn-primary:hover[b-dsix2iob73] {
    background-color: #0056b3;
    border-color: #0056b3;
}

.form-group label[b-dsix2iob73] {
    color: #495057;
}

@media (max-width: 768px) {
    .login-container[b-dsix2iob73] {
        margin-top: 20px;
        padding: 20px;
    }

    .login-header[b-dsix2iob73] {
        font-size: 1.5rem;
    }
}
/* _content/AvaBeshoyTayoSystem/Components/PrintTayosCards/DateRangeSharedComponents.razor.rz.scp.css */
.date-range[b-s2monm0czw] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.date-range label[b-s2monm0czw] {
    font-weight: bold;
}

.date-range input[b-s2monm0czw], .date-range button[b-s2monm0czw] {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button[b-s2monm0czw] {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover[b-s2monm0czw] {
    background-color: #0056b3;
}

@media (min-width: 768px) {
    .date-range[b-s2monm0czw] {
        flex-direction: row;
        align-items: center;
    }

    .date-range button[b-s2monm0czw] {
        margin-left: 15px;
    }
}

.date-range-section[b-s2monm0czw] {
    border: 1px solid red; /* Temporary style to debug */
}
/* _content/AvaBeshoyTayoSystem/Components/PrintTayosCards/TayoCardComponent.razor.rz.scp.css */
:root[b-n7wzqzkkpe] {
    --top-space: 50px; /* Default top space */
}

.card-container[b-n7wzqzkkpe] {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 5px; /* Adjust gap between cards */
    margin-top: var(--top-space); /* Controlled top space */
}

.card[b-n7wzqzkkpe] {
    border: 1px solid #ccc;
    padding: 5px; /* Smaller padding to reduce card size */
}

.card-content[b-n7wzqzkkpe] {
    display: flex;
    align-items: center;
}

.side-image-left[b-n7wzqzkkpe], .side-image-right[b-n7wzqzkkpe] {
    width: 30px; /* Smaller image size */
    height: 30px;
}

.middle-content[b-n7wzqzkkpe] {
    text-align: center;
    flex-grow: 1;
    padding: 5px; /* Reduced padding */
}

.barcode[b-n7wzqzkkpe] {
    width: 100px; /* Smaller barcode width */
    height: 50px; /* Smaller barcode height */
}

/* Print-specific styles */
@media print {
    .card-container[b-n7wzqzkkpe] {
        page-break-before: always; /* Start cards on a new page */
    }

    /* Skip the first image during print */
    .card-content img:first-child[b-n7wzqzkkpe] {
        display: none;
    }

    /* Ensure the layout for printing is still 3 cards per row */
    .card-container[b-n7wzqzkkpe] {
        grid-template-columns: repeat(3, 1fr); /* 3 cards per row during print */
    }

    /* Ensure the controls are not printed */
    .controls[b-n7wzqzkkpe] {
        display: none;
    }
}
/* _content/AvaBeshoyTayoSystem/Components/Quiz/QuizCreationComponent.razor.rz.scp.css */
.page-container[b-v4bi10h2w1] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh; /* Full viewport height */
    padding: 10px; /* Reduced padding around the page */
}

.quiz-form-container[b-v4bi10h2w1] {
    flex: 1;
    display: flex;
    align-items: flex-start; /* Align form at the top */
    justify-content: center; /* Center the form horizontally */
    margin-bottom: 10px; /* Reduced space between the form and the table */
}

.quiz-form[b-v4bi10h2w1] {
    background-color: white;
    padding: 20px; /* Reduced padding inside the form */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Slightly lighter shadow */
    border-radius: 6px; /* Slightly smaller rounded corners */
    max-width: 350px; /* Slightly narrower form */
    width: 100%;
    text-align: left;
}


/* _content/AvaBeshoyTayoSystem/Components/Quiz/QuizTableComponent.razor.rz.scp.css */
.quiz-table-container[b-uykk3ii2sl] {
    flex: 1;
    display: flex;
    align-items: flex-end; /* Align table at the bottom */
    justify-content: center; /* Center the table horizontally */
    margin-top: 10px; /* Reduced margin above the table */
}

.quiz-table-container .mat-table[b-uykk3ii2sl] {
    width: 90%; /* Table takes up most of the available width */
    max-width: 900px; /* Slightly narrower max-width */
}

h3[b-uykk3ii2sl] {
    text-align: center;
    margin-bottom: 15px; /* Reduced space below the heading */
}

.mat-button[b-uykk3ii2sl] {
    margin-top: 15px; /* Reduced margin above the button */
    width: 100%; /* Full-width button */
}
/* _content/AvaBeshoyTayoSystem/Components/Shared/LoaderComponent.razor.rz.scp.css */
.loader[b-l34lypqq9o] {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.spinner[b-l34lypqq9o] {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin-b-l34lypqq9o 2s linear infinite;
}

@keyframes spin-b-l34lypqq9o {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* _content/AvaBeshoyTayoSystem/Components/Tayo/TayoCreationForPersonComponent.razor.rz.scp.css */
.divContainer[b-yc5dnmeu5g] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.tableNames[b-yc5dnmeu5g] {
    margin-bottom: 10px;
}
.nameDisplay[b-yc5dnmeu5g] {
    margin-top: 10px;
}
.step[b-yc5dnmeu5g] {
    border-radius: 8px;
}
/* _content/AvaBeshoyTayoSystem/Components/Tayo/TayoTableForOnePersonComponent.razor.rz.scp.css */
.divContainer[b-ihqsyfvaiy] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.tableNames[b-ihqsyfvaiy] {
    margin-bottom: 10px;
}
.nameDisplay[b-ihqsyfvaiy], .totalAmountDisplay[b-ihqsyfvaiy] {
    margin-top: 10px;
}
.step[b-ihqsyfvaiy] {
    border-radius: 8px;
}
/* _content/AvaBeshoyTayoSystem/Shared/MainLayout.razor.rz.scp.css */
.page[b-wyyi1r7miv] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-wyyi1r7miv] {
    flex: 1;
}

.sidebar[b-wyyi1r7miv] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-wyyi1r7miv] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-wyyi1r7miv]  a, .top-row .btn-link[b-wyyi1r7miv] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-wyyi1r7miv] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-wyyi1r7miv] {
        display: none;
    }

    .top-row.auth[b-wyyi1r7miv] {
        justify-content: space-between;
    }

    .top-row a[b-wyyi1r7miv], .top-row .btn-link[b-wyyi1r7miv] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-wyyi1r7miv] {
        flex-direction: row;
    }

    .sidebar[b-wyyi1r7miv] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-wyyi1r7miv] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-wyyi1r7miv], article[b-wyyi1r7miv] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/AvaBeshoyTayoSystem/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-3yme9su7z1] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-3yme9su7z1] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-3yme9su7z1] {
    font-size: 1.1rem;
}

.oi[b-3yme9su7z1] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-3yme9su7z1] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-3yme9su7z1] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-3yme9su7z1] {
        padding-bottom: 1rem;
    }

    .nav-item[b-3yme9su7z1]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-3yme9su7z1]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-3yme9su7z1]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-3yme9su7z1] {
        display: none;
    }

    .collapse[b-3yme9su7z1] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-3yme9su7z1] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
