/* Minimal custom overrides */
[contenteditable]:focus {
    outline: none;
}

.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
    display: inline-block;
}

/* Active stage pulse animation */
@keyframes stage-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(30, 58, 138, 0); }
}
.stage-pulse {
    animation: stage-pulse 2s ease-in-out infinite;
}

/* Ensure focus rings are visible */
*:focus-visible {
    outline: 2px solid #0F172A;
    outline-offset: 2px;
}

input:focus, select:focus, textarea:focus, button:focus-visible {
    ring-color: #0F172A;
}
