/* Rating input section */
.rating-input {
    background-color: #121418;
    width: 100%;
    padding: 24px 0 32px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-input_wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.rating-input_content {
    background-color: #222222;
    padding: 40px 20px;
    text-align: center;
}

/* Rating question */
.rating-input_question {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 32px 0;
}

/* Rating buttons container */
.rating-input_buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

/* Button rows */
.rating-input_button-row {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    width: 100%;
}

/* Individual rating button */
.rating-input_button {
    background-color: #333333;
    color: #ffffff;
    border: none;
    padding: 16px 12px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

/* Comment input container */
.rating-input_comment-container {
    margin-bottom: 24px;
}

/* Comment input */
.rating-input_comment {
    background-color: #333333;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    box-sizing: border-box;
    resize: none;
    min-height: 100px;
    outline: none;
}

.rating-input_comment::placeholder {
    color: #cccccc;
}

/* Publish button */
.rating-input_publish {
    background-color: #50C878;
    color: #000000;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-bottom: 16px;
}

/* Policy notice */
.rating-input_policy-notice {
    color: #cccccc;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Policy links */
.rating-input_policy-link {
    color: #ADEBB3;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

/* Active state for rating buttons */
.rating-input_button.active {
    background-color: #50C878;
    color: black;
    border-color: #50C878;
}

.rating-input_button.active:hover {
    background-color: #50C878;
    border-color: #50C878;
}

/* Notification styling - Matching Auth pages */
.rating-input_notification {
    margin: 16px 0;
    padding: 14px 16px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    transition: opacity 0.3s ease;
    display: none;
}

.rating-input_notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-input_notification-message {
    color: inherit;
}

/* Success notification - Matching Auth pages */
.rating-input_notification--success {
    background-color: #065f46;
    color: #d1fae5;
}

/* Error notification - Matching Auth pages */
.rating-input_notification--error {
    background-color: #7f1d1d;
    color: #fecaca;
}

/* Warning notification */
.rating-input_notification--warning {
    background-color: #ff9800;
    color: #ffffff;
}

/* Info notification */
.rating-input_notification--info {
    background-color: #2196F3;
    color: #ffffff;
}
