.feedback-block .rating-survey-container {
    max-width: 800px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.feedback-block .rating-question {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.feedback-block .rating-question .title {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.feedback-block .button-group {
    display: flex;
    gap: 10px;
}

.feedback-block .button-group .as-button {
    padding: 10px 24px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #0077cc;
    transition: all 0.2s ease;
}

.feedback-block .button-group .as-button:hover {
    background: #f5f5f5;
    border-color: #0077cc;
}

.feedback-block .button-group .as-button.selected {
    background: #0077cc !important;
    color: #fff !important;
    border-color: #0077cc !important;
}

.feedback-block .feedback-section {
    margin-top: 20px;
    display: none;
    width: 100%;
}

.feedback-block .feedback-title {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.feedback-block .feedback-container {
    width: 100%;
}

.feedback-block .feedback-input {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    background: #fafafa;
}

.feedback-block .feedback-input:focus {
    outline: none;
    border-color: #0077cc;
    background: #fff;
}

.feedback-block .feedback-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 32px;
    background: #fff;
    border: 2px solid #0077cc;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #0077cc;
    transition: all 0.2s ease;
}

.feedback-block .feedback-btn:hover {
    background: #0077cc;
    color: #fff;
}

.feedback-block .feedback-counter {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    transition: color 0.2s ease;
}

.feedback-block .feedback-counter.warning {
    color: #e74c3c;
}
