.a11y-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1100;
    font-family: var(--font-base, 'Inter', system-ui, sans-serif);
}

.a11y-widget button {
    cursor: pointer;
}

.a11y-widget__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent, #1f4fff);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.3);
}

.a11y-widget__toggle > span {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.95rem;
}

.a11y-widget__panel {
    margin-top: 0.75rem;
    background: var(--color-surface, #fff);
    border: 1px solid var(--color-border, rgba(15, 23, 42, 0.1));
    border-radius: 1rem;
    padding: 1rem;
    width: min(320px, 90vw);
    display: none;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.a11y-widget__panel[aria-hidden="false"] {
    display: grid;
    gap: 0.75rem;
}

.a11y-widget__group {
    display: grid;
    gap: 0.5rem;
}

.a11y-widget__group-title {
    font-weight: 600;
}

.a11y-widget__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.a11y-widget__buttons button {
    flex: 1 1 45%;
    background: rgba(31, 79, 255, 0.08);
    border: 1px solid rgba(31, 79, 255, 0.15);
    border-radius: 0.75rem;
    padding: 0.5rem;
}

.a11y-widget__reset {
    background: none;
    border: none;
    color: var(--color-accent, #1f4fff);
    text-align: left;
    padding: 0;
}

.support-widget {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 1000;
    font-family: var(--font-base, 'Inter', system-ui, sans-serif);
}

.support-widget button {
    cursor: pointer;
}

.support-widget__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent, #1f4fff);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.3);
}

.support-widget__icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.95rem;
}

.support-widget__panel {
    margin-top: 0.75rem;
    background: var(--color-surface, #fff);
    border: 1px solid var(--color-border, rgba(15, 23, 42, 0.1));
    border-radius: 1rem;
    padding: 1rem;
    width: min(320px, 90vw);
    display: none;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.support-widget__panel[aria-hidden="false"] {
    display: grid;
    gap: 0.65rem;
}

.support-widget__title {
    font-weight: 600;
}

.support-widget__message {
    margin: 0;
    color: var(--color-muted, #5d6a8d);
    font-size: 0.95rem;
}

.support-widget__cta {
    align-self: start;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--color-accent, #1f4fff);
    text-decoration: none;
}

.support-widget__cta:hover,
.support-widget__cta:focus {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .support-widget {
        right: 1rem;
        bottom: 5rem;
    }
}
