/* Feedback Section Styles */
.feedback-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.btn-feedback-toggle {
    background: #17a2b8;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 600;
}

.btn-feedback-toggle:hover {
    background: #138496;
}

.feedback-form {
    margin-top: 15px;
}

.feedback-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 10px;
}

.feedback-form textarea:focus {
    outline: none;
    border-color: #17a2b8;
}

#submitFeedbackBtn {
    width: 100%;
}

/* Feedback List in Modal */
.feedback-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.feedback-item {
    background: white;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    border-left: 3px solid #17a2b8;
}

.feedback-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px;
    color: #666;
}

.feedback-item-text {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.feedback-loading, .feedback-empty {
    text-align: center;
    color: #999;
    padding: 20px;
    font-style: italic;
}