/* Header height adjustment - reducing to 80px total height */
header {
    background-color: var(--white-color);
    padding: 10px 0; /* Adjusted padding to help achieve ~80px total height */
    color: var(--text-color-dark);
    border-bottom: 1px solid var(--light-gray-border);
    position: relative; /* Changed from fixed to relative to prevent overlap issues */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 60px; /* Fixed height to ensure total header height is ~80px with padding */
}

/* Ensure logo is properly sized within the reduced header */
.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

#header-logo {
    height: 50px; /* Adjusted logo size to fit in reduced header */
    width: auto;
}

/* Ensure the Register/Login buttons maintain their original style */
.fm-actions-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fm-btn-register-free,
.fm-btn-login {
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.fm-btn-register-free {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}

.fm-btn-login {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* Responsive adjustments to maintain header height */
@media (max-width: 768px) {
    .header-content {
        height: auto; /* Allow flexible height on mobile */
    }
}
