/* Header layout baru */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Supaya tombol di header tetap terbaca di background gradien */
.header-actions .btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-actions .btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.header-actions .btn-primary {
    background: white;
    color: #667eea;
    border: none;
    font-weight: 600;
}

.header-actions .btn-primary:hover {
    background: #f0f0f0;
}

/* Responsive untuk layar kecil */
@media (max-width: 600px) {
    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-actions {
        width: 100%;
    }
    
    .header-actions .btn {
        flex: 1;
    }
}