/* Feedback Prompt Styles */
.feedback-prompt {
    margin-top: 20px;
    background: linear-gradient(135deg, #667eea20, #764ba220);
    border: 2px solid #667eea;
    border-radius: 10px;
    padding: 20px;
    animation: slideIn 0.3s ease-out;
    box-sizing: border-box;
    width: 100%;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-content h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feedback-message {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.privacy-notice {
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.privacy-notice small {
    display: block;
    line-height: 1.5;
}

.feedback-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.feedback-buttons .btn {
    flex: 1;
    max-width: 200px;
}

/* Feedback Summary Styles */
.feedback-summary {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.feedback-summary h4 {
    color: #667eea;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feedback-description {
    color: #555;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.gesture-summary {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.gesture-summary li {
    padding: 8px;
    margin: 5px 0;
    background: #f8f9fa;
    border-left: 3px solid #667eea;
    border-radius: 4px;
}

.gesture-summary strong {
    color: #667eea;
}

.total-samples {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 1.05rem;
    color: #333;
}

.total-samples strong {
    color: #667eea;
    font-size: 1.2rem;
}
