.page-feedback-card {
    margin-top: 20px;
    margin-bottom: 8px;
    border: 1px solid #d6ddf5;
    border-radius: 14px;
    background: #ffffff;
    padding: 18px 16px;
    text-align: center;
}

.page-feedback-title {
    margin: 0 0 12px 0;
    color: #1f2937;
    font-size: 18px;
    font-weight: 700;
}

.page-feedback-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-feedback-btn {
    border: 1px solid #c8d2ec;
    background: #f8faff;
    color: #2d3748;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    min-width: 92px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.page-feedback-btn:hover {
    transform: translateY(-1px);
    border-color: #aebfed;
    box-shadow: 0 6px 14px rgba(79, 70, 229, 0.12);
    background: #eff4ff;
}

.page-feedback-btn:active {
    transform: translateY(0);
}

.page-feedback-btn:focus-visible {
    outline: 3px solid rgba(79, 70, 229, 0.35);
    outline-offset: 2px;
}

.page-feedback-message {
    margin: 0;
    color: #2d3748;
    font-size: 15px;
    line-height: 1.6;
}

.page-feedback-message a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
}

.page-feedback-message a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-feedback-card {
        padding: 16px 14px;
    }

    .page-feedback-actions {
        gap: 12px;
    }

    .page-feedback-btn {
        min-width: 112px;
        padding: 12px 16px;
    }
}
