.header-container {
    background: #002500;

}

.header-inner {
    max-width: 1000px;
    display: flex;
    align-items: flex-end; /* Align children to bottom */
    justify-content: space-between;
    height: 100%;
}

.header-left {
    width: 25%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    /*display: block;*/
    object-fit: contain;
}

.header-center {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.nav-buttons {
    display: flex;
    gap: 18px;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 16px;
    padding: 8px 14px;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 4px;
}

.nav-btn:hover {
    background: #e2e6ea;
}

.header-right {
    width: 25%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

/* Pad (portrait and landscape) */
@media (max-width: 1024px) {
    .header-container {
        height: 220px;
        padding: 16px;
    }
    .header-inner {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }
    .header-left,
    .header-center,
    .header-right {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 8px;
    }
    .header-center {
        justify-content: flex-start;
    }
    .nav-buttons {
        gap: 10px;
    }
    .logo-img {
        height: 40px;
    }
}

/* Mobile devices */
@media (max-width: 600px) {
    .header-container {
        height: 140px;
        padding: 8px;
    }
    .header-inner {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }
    .header-left,
    .header-center,
    .header-right {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 6px;
    }
    .header-center {
        justify-content: flex-start;
    }
    .nav-buttons {
        gap: 6px;
    }
    .logo-img {
        height: 32px;
    }
    .nav-btn,
    .user-btn {
        font-size: 14px;
        padding: 6px 10px;
    }
}
