.feedback-modal {
    max-width: 600px;
    max-height: 90vh;
}

.feedback-intro {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.feedback-intro p {
    margin: 8px 0;
    line-height: 1.6;
}

.feedback-options {
    margin: 25px 0;
}

.feedback-question {
    margin-bottom: 25px;
    text-align: center;
}

.feedback-question h3 {
    margin-bottom: 15px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.emoji-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.emoji-option {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji-option:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

.emoji-option.selected {
    border-color: var(--primary);
    background-color: rgba(99, 102, 241, 0.1);
    transform: scale(1.1);
}

.rating-label {
    text-align: center;
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-top: 10px;
    min-height: 20px;
    font-weight: 500;
}

.feedback-comment {
    margin-top: 20px;
}

.feedback-comment h3 {
    margin-bottom: 10px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feedback-comment textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    color: var(--text);
    font-family: inherit;
    resize: vertical;
    margin-top: 10px;
    font-size: 0.95rem;
}

.feedback-comment textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.google-form-section {
    background: var(--card);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid var(--border);
    text-align: center;
}

.google-form-section h3 {
    margin-bottom: 15px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.google-form-section p {
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--text-light);
}

.google-form-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 15px 0;
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.google-form-btn:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.google-form-btn i {
    margin-right: 10px;
}

.form-note {
    font-size: 0.85em;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.thank-you-feedback {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.thank-you-feedback .heart-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.thank-you-feedback p {
    margin: 5px 0;
    line-height: 1.5;
}

.thank-you-feedback strong {
    color: var(--primary);
}