.feedback-drawer {
    background-color: white;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

/* --- HEADER --- */
.feedback-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.feedback-drawer-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #132D2F;
    line-height: 1.4;
    margin: 0;
    max-width: 85%;
}

/* --- FORM --- */
.form-section {
    margin-bottom: 16px;
}

.form-section-tell {
    margin-bottom: 8px;
}

.section-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #132D2F;
    margin-bottom: 10px;
}

/* --- STARS --- */
.rating-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 30px;
}

.star-rating-container {
    display: flex;
    gap: 8px;
    cursor: pointer;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: #132D2F;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    white-space: nowrap;
}

.rating-text.is-visible {
    opacity: 1;
}

.star-icon {
    transition: transform 0.2s ease;
}

.star-icon:hover {
    transform: scale(1.2);
}

.star-icon.filled path {
    fill: #F27123;
}

/* --- TAGS --- */
.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feedback-tag {
    background-color: #F3F4F6;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #132D2F;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feedback-tag.active {
    background-color: #FAC6A7;
    border-color: #FAC6A7;
    color: #132D2F;
}

/* --- INPUTS --- */
.feedback-textarea,
.feedback-input {
    width: 100%;
    padding: 12px !important;
    border: 1px solid #FCE3D3 !important;
    border-radius: 16px !important;
    font-family: inherit;
    font-size: 13px !important;
    color: #132D2F;
    outline: none;
    transition: border-color 0.2s ease;
}

.feedback-textarea {
    min-height: 100px;
    resize: vertical;
}

.feedback-textarea:focus,
.feedback-input:focus {
    border-color: #FD8559;
}

/* --- BUTTONS --- */
.btn-attachment {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 5px;
    border: 1px solid #D9EEF3;
    border-radius: 10px;
    background: white;
    font-size: 14px;
    color: #6B7280;
    cursor: pointer;
}

.btn-attachment span {
    font-size: 16px;
}

.btn-submit-feedback {
    width: 100%;
    padding: 12px;
    background-color: #FD8559;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
