/* ==========================================================================
   Binkterm Echo Area Button Mod - Stylesheet
   Zero-touch stylesheet inheriting 100% of theme colors.
   https://github.com/thewebexpert/binkterm-php-echoButtonMod
   ========================================================================== */

.echo-button-toolbar {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.echo-section-title {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-color-muted, #868e96);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.echo-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.echo-btn {
    font-size: 0.78rem;
    padding: 0.25rem 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    /* Eliminate transition delay to avoid Bootstrap blue flash */
    transition: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
}

/* Eliminate Bootstrap default blue focus rings, active outlines, and box shadows */
.echo-btn:focus,
.echo-btn:focus-visible,
.echo-btn:active,
.echo-btn.active {
    box-shadow: none !important;
    outline: none !important;
}

.echo-btn .badge {
    font-size: 0.68rem;
    padding: 0.2em 0.45em;
    border-radius: 50rem;
    pointer-events: none;
}

/* Quick Action button styling */
.echo-action-btn {
    font-size: 0.75rem;
    padding: 0.22rem 0.55rem;
}

.echo-action-btn.active {
    background-color: var(--bs-primary, #dc3545) !important;
    border-color: var(--bs-primary, #dc3545) !important;
    color: #fff !important;
}
