/* Mood Personalization Styles */

.ui-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ui-mood-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ui-mood-button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ui-mood-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ui-mood-button.selected {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .ui-buttons-container {
        flex-direction: column;
    }
    
    .ui-mood-button {
        width: 100%;
    }
}
