/* Feedback Widget Styles */
.feedback-widget {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.feedback-question {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.feedback-question .material-symbols-rounded {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.feedback-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.feedback-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-border);
    background: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feedback-btn .material-symbols-rounded {
    font-size: 1.5rem;
}

.feedback-btn-up {
    color: #059669;
    border-color: #d1fae5;
}

.feedback-btn-up:hover {
    background: #d1fae5;
    border-color: #059669;
}

.feedback-btn-up.active {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.feedback-btn-down {
    color: #dc2626;
    border-color: #fee2e2;
}

.feedback-btn-down:hover {
    background: #fee2e2;
    border-color: #dc2626;
}

.feedback-btn-down.active {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.feedback-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background: var(--color-surface-alt);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feedback-btn-up .feedback-count {
    background: #d1fae5;
    color: #065f46;
}

.feedback-btn-down .feedback-count {
    background: #fee2e2;
    color: #991b1b;
}

.feedback-btn-up.active .feedback-count {
    background: rgba(255,255,255,0.3);
    color: white;
}

.feedback-btn-down.active .feedback-count {
    background: rgba(255,255,255,0.3);
    color: white;
}

.feedback-thanks {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #d1fae5;
    border-radius: var(--radius-md);
    color: #065f46;
    font-weight: 600;
    font-size: 1.05rem;
}

.feedback-thanks .material-symbols-rounded {
    font-size: 1.5rem;
    color: #10b981;
}

/* Dark Mode Support */
[data-theme="dark"] .feedback-btn {
    background: var(--color-surface);
    border-color: var(--color-border);
}

[data-theme="dark"] .feedback-btn-up:hover {
    background: rgba(16, 185, 129, 0.1);
}

[data-theme="dark"] .feedback-btn-down:hover {
    background: rgba(239, 68, 68, 0.1);
}

[data-theme="dark"] .feedback-count {
    background: var(--color-surface-alt);
}

/* Mobile Optimierung */
@media (max-width: 640px) {
    .feedback-widget {
        padding: 1.5rem;
    }
    
    .feedback-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .feedback-btn {
        width: 100%;
        justify-content: center;
    }
}
