/* Login Button - Green Theme */
.header .btn-getlogin,
.header .btn-getlogin:focus {
    color: #fff; /* white text for contrast */
    background: #28a745; /* Bootstrap green base */
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
    border: 2px solid color-mix(in srgb, #fff, transparent 90%);
}
.header .btn-getlogin:hover,
.header .btn-getlogin:focus:hover {
    color: #fff;
    background: #218838; /* darker green on hover */
}
/* Logout Button - Red Theme */
.header .btn-getlogout,
.header .btn-getlogout:focus {
    background: #fa0d0d; /* Bootstrap red base */
}
.header .btn-getlogout:hover,
.header .btn-getlogout:focus:hover {
    background: #f60505; /* darker red on hover */
}
/* Sidebar container */
.sidebar {
    background-color: #1E3A5F !important; /* Dark blue */
    min-height: 100vh;
    color: #B8CBDF;
    padding-top: 1rem;
}
/* Sidebar heading */
.sidebar-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-left: 15px;
}
/* Sidebar nav */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.sidebar-nav li {
    width: 100%;
}
.sidebar-link {
    display: block;
    width: 100%;
    color: #B8CBDF;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.sidebar-link.active {
    background-color: #2f6eb6;
    color: #fff;
    font-weight: 600;
}
.sidebar-link:hover {
    background-color: #027887;
    color: #fff;
    text-decoration: none;
}

