/* AI搜索反馈组件样式 */
.ai-feedback-form {
    padding: 15px 0;
}

.feedback-subtitle {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

/* 星级评分样式 */
.rating-section {
    margin-bottom: 15px;
    text-align: center;
}

.star-rating {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
}

.star-rating .star {
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
    margin: 0 2px;
    user-select: none;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #ffc107;
}

.star-rating .star.hover {
    color: #ffc107;
}

/* 反馈文本框样式 */
.feedback-text-section {
    margin-bottom: 15px;
}

.feedback-text-section textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.4;
    resize: vertical;
    min-height: 60px;
    box-sizing: border-box;
}

.feedback-text-section textarea:focus {
    outline: none;
    border-color: #2F92EE;
    box-shadow: 0 0 0 2px rgba(47, 146, 238, 0.1);
}

.feedback-text-section textarea::placeholder {
    color: #999;
}

/* 提交按钮样式 */
.feedback-submit-section {
    text-align: center;
}

.feedback-submit-btn {
    background-color: #2F92EE;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 80px;
    line-height: 22px !important;
}

.feedback-submit-btn:hover {
    background-color: #1e7dd8;
}

.feedback-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .ai-feedback-form {
        padding: 10px 0;
    }
    
    .star-rating {
        font-size: 18px;
    }
    
    .feedback-text-section textarea {
        font-size: 14px;
    }
}
