/* Feedback Widget Styling */

.feedback-widget {
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.feedback-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feedback-label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.feedback-buttons {
    display: flex;
    gap: 10px;
}

.feedback-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feedback-positive {
    color: #22c55e;
    border-color: #22c55e;
}

.feedback-positive:hover {
    background: #f0fdf4;
    border-color: #16a34a;
}

.feedback-negative {
    color: #ef4444;
    border-color: #ef4444;
}

.feedback-negative:hover {
    background: #fef2f2;
    border-color: #dc2626;
}

.feedback-icon {
    font-size: 18px;
    line-height: 1;
}

.feedback-text {
    font-size: 14px;
}

.feedback-comment-section {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feedback-comment {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
}

.feedback-comment:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.feedback-submit-btn {
    align-self: flex-start;
    padding: 8px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.feedback-submit-btn:hover {
    background: #5568d3;
}

.feedback-thanks {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
    font-weight: 500;
    padding: 8px;
}

.feedback-thanks .feedback-icon {
    font-size: 20px;
}

/* Responsiv design */
@media (max-width: 600px) {
    .feedback-buttons {
        flex-direction: column;
    }

    .feedback-btn {
        width: 100%;
        justify-content: center;
    }
}
