/* ===== Header Only ===== */


header .header-left a {
    font-weight: bold;
    font-size: 1.3rem;
    color: #ffd;
}

header .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    height: 100%;  /* Ensure the right section takes up the full height of the header */
}

header .header-right span {
    white-space: nowrap;
}

header .header-right a {
    color: #ffd;
    background: rgba(255 255 255 / 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    transition: background-color 0.3s;
    display: flex;  /* Ensure the <a> tags behave like flex items */
    align-items: center;  /* Center content inside <a> vertically */
    justify-content: center;  /* Center content inside <a> horizontally */
}

header .header-right a:hover {
    background: rgba(255 255 255 / 0.4);
}

/* Hamburger & Dropdown (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

.hamburger div {
    background-color: #ffd;
    height: 3px;
    border-radius: 2px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
    background: #007bff;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    min-width: 150px;
    z-index: 1100;
}

.dropdown-menu a {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255 255 255 / 0.3);
    color: #ffd;
    font-size: 1rem;
    white-space: nowrap;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: rgba(255 255 255 / 0.3);
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .header-right {
        display: none;
    }

    .dropdown-menu.show {
        display: flex;
        flex-direction: column;
    }
}
