/* Feedback Widget Styles */
.ea-feedback-button {
    position: fixed;
    right: 1rem;
    bottom: 3rem;
    z-index: 9999;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    background: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
    width: auto; /* override any global button full-width styles */
}

.ea-feedback-button:hover {
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.ea-feedback-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.ea-feedback-modal.is-open {
    display: block;
}

.ea-feedback-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.ea-feedback-dialog {
    position: relative;
    max-width: 1200px;
    margin: 8vh auto;
    padding: 0 1.5rem;
}

.ea-feedback-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.ea-feedback-intro {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .ea-feedback-dialog {
        margin: 4vh auto;
        padding: 0 1rem;
    }
}

.ea-feedback-hidden-forever #ea-feedback-widget {
  display: none !important;
}
