/* Foxborger Schedule Widget */

.fbs-wrap { width: 100%; }
.fbs-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1100px) { .fbs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px)  { .fbs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 420px)  { .fbs-grid { grid-template-columns: 1fr; } }

.fbs-day {
    border: 2px solid currentColor;
    border-radius: 16px;
    padding: 0.9rem;
    background: rgba(255,255,255,0.04);
}

.fbs-day-title {
    margin: 0 0 0.75rem 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
}

.fbs-items { display: grid; gap: 0.6rem; }

.fbs-item {
    display: block;
    text-decoration: none;
    border-radius: 14px;
    padding: 0.7rem 0.75rem;
    border: 2px solid rgba(255,255,255,0.18);
    box-shadow: 0 1px 0 rgba(0,0,0,0.25);
}

.fbs-item:hover { filter: brightness(1.06); }
.fbs-item:focus-visible { outline: 3px solid currentColor; outline-offset: 3px; }

.fbs-time {
    font-size: 0.82rem;
    font-weight: 800;
    opacity: 0.95;
}

.fbs-title {
    font-size: 1rem;
    font-weight: 900;
    margin-top: 0.15rem;
    line-height: 1.15;
}

.fbs-desc {
    margin-top: 0.25rem;
    font-size: 0.92rem;
    line-height: 1.25;
    opacity: 0.95;
}

.fbs-empty {
    font-size: 0.92rem;
    opacity: 0.8;
    text-align: center;
    padding: 0.9rem 0.5rem;
    border-radius: 14px;
    border: 2px dashed rgba(255,255,255,0.25);
}

/* Highlight "Today" */
.fbs-day.is-today {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
    border-width: 8px;
    border-color: #1cc9cb;
}

.fbs-day-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fbs-today-pill {
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    border: 2px solid currentColor;
    opacity: 0.9;
}