/**
 * Header Actions Styling
 * For Othala Solutions multilingual website
 */

/* Header actions container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 10px;
}

/* Ensure proper spacing between nav links and header actions */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobile responsive styles */
@media (max-width: 991px) {
    .header-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 10px;
        margin-top: 15px;
    }
    
    .language-selector {
        width: 100%;
    }
    
    .nav-button {
        width: 100%;
    }
    
    .nav-button a {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}
