/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-mzy9o4hoob] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-mzy9o4hoob] {
    flex: 1;
}

.sidebar[b-mzy9o4hoob] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-mzy9o4hoob] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-mzy9o4hoob]  a, .top-row[b-mzy9o4hoob]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-mzy9o4hoob]  a:hover, .top-row[b-mzy9o4hoob]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-mzy9o4hoob]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-mzy9o4hoob] {
        display: none;
    }

    .top-row.auth[b-mzy9o4hoob] {
        justify-content: space-between;
    }

    .top-row[b-mzy9o4hoob]  a, .top-row[b-mzy9o4hoob]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-mzy9o4hoob] {
        flex-direction: row;
    }

    .sidebar[b-mzy9o4hoob] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-mzy9o4hoob] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-mzy9o4hoob]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mzy9o4hoob], article[b-mzy9o4hoob] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
/* Navbar styles */
.navbar-toggler[b-ocs60xnjhq] {
    background-color: rgba(255, 255, 255, 0.2); /* Light transparency for toggler */
}

.top-row[b-ocs60xnjhq] {
    height: 3.5rem;
    background-color: #FF9933; /* Saffron-orange color for Vedic theme */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Navbar brand */
.navbar-brand[b-ocs60xnjhq] {
    font-size: 1.2rem;
    color: white;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Navbar icon */
.oi[b-ocs60xnjhq] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
    color: #FFD700; /* Gold color for icons */
}

/* Navigation items */
.nav-item[b-ocs60xnjhq] {
    font-size: 1rem;
    padding: 0.5rem 0;
}

    .nav-item:first-of-type[b-ocs60xnjhq] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ocs60xnjhq] {
        padding-bottom: 1rem;
    }

    /* Links */
    .nav-item[b-ocs60xnjhq]  a {
        color: white;
        background-color: transparent;
        border-radius: 6px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        font-family: 'Arial', sans-serif;
        padding: 0 1rem;
        transition: all 0.3s ease-in-out;
    }

        /* Active links */
        .nav-item[b-ocs60xnjhq]  a.active {
            background-color: #D2691E; /* Earthy tone for active state */
            color: white;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Hover effect */
        .nav-item[b-ocs60xnjhq]  a:hover {
            background-color: #FFD700; /* Gold on hover */
            color: #8B4513; /* Dark brown text on hover */
        }

/* Scrollable navigation for wider screens */
@media (min-width: 641px) {
    .navbar-toggler[b-ocs60xnjhq] {
        display: none;
    }

    .collapse[b-ocs60xnjhq] {
        display: block; /* Sidebar stays open for wide screens */
    }

    .nav-scrollable[b-ocs60xnjhq] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* Additional customizations */

/* Body background */
body[b-ocs60xnjhq] {
    background-color: #FFF8E7; /* Off-white background with a warm tone */
    font-family: 'Georgia', serif;
    color: #4B2C20; /* Dark brown for text */
}

/* Card styles */
.card[b-ocs60xnjhq] {
    background-color: #FFF3E0; /* Light peach for cards */
    border: 1px solid #FFD700; /* Gold border */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.card-body[b-ocs60xnjhq] {
    padding: 1.5rem;
}

.card-title[b-ocs60xnjhq] {
    color: #8B4513; /* Deep brown for headings */
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

/* Inputs */
input.form-control[b-ocs60xnjhq], select.form-select[b-ocs60xnjhq] {
    border: 1px solid #FF9933;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 1rem;
    color: #4B2C20;
    background-color: #FFF8E7;
}

    /* Inputs focus */
    input.form-control:focus[b-ocs60xnjhq], select.form-select:focus[b-ocs60xnjhq] {
        border-color: #FFD700; /* Gold on focus */
        outline: none;
        box-shadow: 0 0 5px rgba(255, 165, 0, 0.8); /* Orange glow */
    }

/* Alerts */
.alert[b-ocs60xnjhq] {
    border-radius: 6px;
    font-weight: bold;
}

.alert-info[b-ocs60xnjhq] {
    background-color: #FFD700; /* Gold alert */
    color: #4B2C20;
}

.alert-danger[b-ocs60xnjhq] {
    background-color: #D2691E; /* Earthy tone for errors */
    color: white;
}

/* Buttons */
button[b-ocs60xnjhq] {
    background-color: #FF9933;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    button:hover[b-ocs60xnjhq] {
        background-color: #D2691E; /* Darker orange on hover */
        color: #FFF8E7;
    }
