/* /Layout/Footer.razor.rz.scp.css */
/* Footer Container */
.footer[b-2byr5xum41] {
    background-color: rgba(245, 245, 220, 0.5); /* Warm Beige with 50% opacity */
    color: #2F4F4F; /* Charcoal Gray */
    padding: 2rem 1rem;
}

.footer-content[b-2byr5xum41] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Sections */
.footer-section[b-2byr5xum41] {
    text-align: center;
}

.footer-title[b-2byr5xum41] {
    font-size: 1.5rem;
    color: #8B0000; /* Deep Red */
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-links[b-2byr5xum41] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li[b-2byr5xum41] {
        margin-bottom: 0.5rem;
    }

        .footer-links li a[b-2byr5xum41] {
            color: #2F4F4F; /* Charcoal Gray */
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-links li a:hover[b-2byr5xum41] {
                color: #8B0000; /* Deep Red */
            }

/* Contact Info */
.footer-phone[b-2byr5xum41] {
    color: #8B0000; /* Deep Red */
    font-weight: bold;
}

    .footer-phone a[b-2byr5xum41] {
        text-decoration: none;
        color: #8B0000;
    }

        .footer-phone a:hover[b-2byr5xum41] {
            text-decoration: underline;
        }

/* Social Media */
.social-logo[b-2byr5xum41] {
    width: 5rem;
    margin-top: 1rem;
}

/* Footer Bar */
.footer-bar[b-2byr5xum41] {
    background-color: #8B0000; /* Deep Red */
    color: #FFFFFF; /* Soft White */
    text-align: center;
    padding: 1rem 0;
    font-size: 0.875rem;
    margin-top: 2rem;
}
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-erc7kwpvz5] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

@media (max-width: 640.98px) {
    .top-row[b-erc7kwpvz5] {
        justify-content: space-between;
    }

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

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

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

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

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

    .top-row[b-erc7kwpvz5], article[b-erc7kwpvz5] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Navbar Base Styles */
.navbar[b-27s0351s71] {
    background-color: #8B0000; /* Deep Red */
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar-container[b-27s0351s71] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* Logo */
.navbar-brand[b-27s0351s71] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF; /* Soft White */
    text-decoration: none;
}

/* Links */
.navbar-links[b-27s0351s71] {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Dropdown Menu */
.dropdown[b-27s0351s71] {
    position: relative;
}

.dropdown-toggle[b-27s0351s71] {
    background: none;
    border: none;
    color: #F5F5DC !important; /* Warm Beige */
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.dropdown-menu[b-27s0351s71] {
    position: absolute;
    top: 100%; /* Display below the toggle */
    left: 0;
    background-color: #F5F5DC !important; /* Soft White */
    border: 2px solid #8B0000 !important; /* Deep Red */
    border-radius: 0.25rem;
    box-shadow: 3px 4px 7px rgba(255, 255, 255, .8);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1000;
    display: none; /* Hidden by default */
}

    .dropdown-menu.dropdown-open[b-27s0351s71] {
        display: block; /* Shown when open */
        background-color: none;
    }

.dropdown-closed[b-27s0351s71] {
    display: none;
}

/*.dropdownItems {
    color: #2F4F4F;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: none;
    text-align: center;
}

    .dropdownItems:hover {
        background-color: #F5F5DC !important;*/ /* Warm Beige */
/*color: #8B0000 !important;*/ /* Deep Red */
/*}*/


/* Hamburger Menu */
.nav-toggle[b-27s0351s71] {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-icon[b-27s0351s71] {
    font-size: 1.5rem;
    color: #FFFFFF; /* Soft White */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-toggle[b-27s0351s71] {
        display: block;
    }

    .navbar-links[b-27s0351s71] {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: #8B0000; /* Deep Red */
        padding: 1rem;
        border-radius: 0.25rem;
        transform: translateY(-200%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-open[b-27s0351s71] {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-closed[b-27s0351s71] {
        transform: translateY(-200%);
        opacity: 0;
        visibility: hidden;
    }
}

.navitem[b-27s0351s71] {
    background: none;
    border: none;
    color: #F5F5DC; /* Warm Beige */
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Nav Dropdown Menu */
.dropdown[b-27s0351s71] {
    position: relative;
}

.dropdown-toggle[b-27s0351s71] {
    background: none;
    border: none;
    color: #F5F5DC; /* Warm Beige */
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.dropdown-menu[b-27s0351s71] {
    position: absolute;
    top: 100%; /* Display below the toggle */
    left: 0;
    background-color: #FFFFFF; /* Soft White */
    border: 1px solid #8B0000; /* Deep Red */
    border-radius: 0.25rem;
    box-shadow: 6px 8px 9px rgba(255, 255, 255, .8);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1000;
    display: none; /* Hidden by default */
}

    .dropdown-menu.dropdown-open[b-27s0351s71] {
        display: block; /* Shown when open */
    }

.dropdown-item[b-27s0351s71] {
    color: #2F4F4F; /* Charcoal Gray */
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .dropdown-item:hover[b-27s0351s71] {
        background-color: #F5F5DC; /* Warm Beige */
        color: #8B0000; /* Deep Red */
    }

