@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

.navbar {
    font-family: 'Figtree', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-left {
    display: none;
}

.navbar-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.logo {
    height: 30px;
    margin-right: 1rem;
}

.logo-image {
    height: 24px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.logo-text {
    color: #87CEEB;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 5px #87CEEB,
        0 0 10px #87CEEB;
}

.navbar-left a {
    text-decoration: none;
}

.navbar-right a {
    display: flex;
    align-items: center;
    color: #87CEEB;
    text-decoration: none;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: 0.2s ease-in-out;
    font-size: 0.9rem;
}

.navbar-right a:hover {
    color: #fff;
    background: rgba(135, 206, 235, 0.2);
}

.navbar-right img {
    height: 18px;
    width: 18px;
}

.navbar-right .nav-icon {
    width: 18px;
    height: 18px;
}

.navbar-right .label {
    font-weight: bold;
}

.container {
    margin-left: 0 !important;
    width: 100% !important;
    margin-top: 60px;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    color: #87CEEB;
    text-decoration: none;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: 0.2s ease-in-out;
    font-size: 0.9rem;
    cursor: pointer;
}

.dropdown-toggle:hover {
    color: #fff;
    background: rgba(135, 206, 235, 0.2);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #87CEEB;
    border-radius: 8px;
    min-width: 140px;
    padding: 6px 0;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 8px 14px;
    color: #87CEEB;
    text-decoration: none;
    transition: 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(135, 206, 235, 0.2);
    color: #fff;
}
