.feedback-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.aspect-section {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.aspect-tag {
    padding: 8px 14px;
    background-color: #faf8f5;
    border: 2px solid #f0e6d6;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.aspect-tag:hover {
    border-color: #c9ebe4;
}

.aspect-tag.selected {
    background-color: #c9ebe4;
    border-color: #a0d9cc;
    color: #333;
}

.aspect-input {
    padding: 8px 14px;
    background-color: #faf8f5;
    border: 2px solid #f0e6d6;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    width: 100px;
    outline: none;
    font-family: 'Microsoft YaHei', sans-serif;
}

.aspect-input:focus {
    border-color: #c9ebe4;
}

.aspect-input::placeholder {
    color: #aaa;
}

.input-textarea {
    width: 100%;
    height: 150px;
    background-color: #faf8f5;
    border: 2px solid #f0e6d6;
    border-radius: 16px;
    padding: 15px;
    font-size: 14px;
    color: #333;
    resize: none;
    font-family: 'Microsoft YaHei', sans-serif;
    transition: border-color 0.2s ease;
    line-height: 1.6;
}

.input-textarea:focus {
    outline: none;
    border-color: #c9ebe4;
}

.input-textarea::placeholder {
    color: #aaa;
}

.submit-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    border-radius: 16px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.email-btn {
    background: linear-gradient(90deg, #ffd5cc 0%, #ffb0a8 100%);
    color: #555;
}

.btn-icon {
    font-size: 18px;
}

.error-msg {
    color: #ff6b6b;
    font-size: 12px;
    text-align: center;
    display: none;
}

.error-msg.show {
    display: block;
}

.submitted-notice {
    background: linear-gradient(90deg, #c9ebe4 0%, #a0d9cc 100%);
    border-radius: 12px;
    padding: 12px 16px;
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.submitted-notice.show {
    display: flex;
}

.submitted-notice-icon {
    font-size: 20px;
}

.submitted-notice-text {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.submitted-notice-close {
    margin-left: auto;
    cursor: pointer;
    font-size: 16px;
    color: #666;
}

@media (max-width: 480px) {
    .input-label {
        font-size: 13px;
    }

    .aspect-tag {
        padding: 6px 12px;
        font-size: 12px;
    }

    .aspect-input {
        padding: 6px 12px;
        font-size: 12px;
        width: 90px;
    }

    .input-textarea {
        height: 100px;
        padding: 12px;
        font-size: 13px;
        border-radius: 12px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 14px;
        border-radius: 12px;
    }

    .submitted-notice {
        padding: 10px 12px;
        border-radius: 10px;
    }

    .submitted-notice-text {
        font-size: 12px;
    }
}
