/**
 * AFTER 5 – Frontend stylesheet v1.01
 * Minimal additions on top of Bootstrap 5 for the public shortcode.
 */

/* ── Wrapper ──────────────────────────────────────────────────────────────── */
.a5e-front-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 860px;
    margin: 0 auto;
}

/* ── Event card hover ─────────────────────────────────────────────────────── */
.a5e-event-card {
    transition: box-shadow .15s ease, transform .1s ease;
}
.a5e-event-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.13) !important;
    transform: translateY(-1px);
}

/* ── Vote button states ───────────────────────────────────────────────────── */
.a5e-vote-btn.voted {
    background: #e6f4ea !important;
    border-color: #198754 !important;
    color: #198754 !important;
    cursor: default !important;
}

/* ── Badge colour helpers (last-played) ──────────────────────────────────── */
.text-danger  { color: #dc3545 !important; }
.text-warning { color: #fd7e14 !important; }
.text-success { color: #198754 !important; }
.text-secondary { color: #6c757d !important; }

/* ── Search bar ──────────────────────────────────────────────────────────── */
#a5e-front-search:focus {
    outline: 2px solid #0073aa;
    border-color: #0073aa;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .a5e-event-card {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .a5e-event-card > div:last-child {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
        margin-top: 8px;
    }
}
