/* UT Baseball Schedule Elementor Widget
   Target size: 120px wide × 600px tall sidebar widget
   Palette: Burnt Orange #BF5700 / Longhorn White #FFFFFF / Dark #1a1a1a
*/

.ut-bsb-widget {
    width: 120px;
    min-height: 600px;
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    font-family: 'Arial Narrow', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0,0,0,.45);
}

/* ── Header ── */
.ut-bsb-header {
    background: #BF5700;
    padding: 10px 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ut-bsb-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.ut-bsb-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.ut-bsb-title-top {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    color: #ffffff;
    text-transform: uppercase;
}

.ut-bsb-title-bot {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255,255,255,.80);
    text-transform: uppercase;
}

/* ── Game list ── */
.ut-bsb-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    flex: 1;
    overflow: hidden;
}

.ut-bsb-game {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 5px 6px;
}

.ut-bsb-game:last-child {
    border-bottom: none;
}

/* Date block */
.ut-bsb-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    margin-right: 5px;
    background: rgba(191,87,0,.20);
    border-radius: 3px;
    padding: 3px 2px;
    flex-shrink: 0;
}

.ut-bsb-day {
    font-size: 7px;
    font-weight: 700;
    color: #BF5700;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1;
}

.ut-bsb-dom {
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-top: 1px;
}

.ut-bsb-mon {
    font-size: 7px;
    font-weight: 700;
    color: rgba(255,255,255,.60);
    letter-spacing: .04em;
    line-height: 1;
    margin-top: 1px;
}

/* Game info */
.ut-bsb-game-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    min-width: 0;
}

.ut-bsb-opp {
    font-size: 9.5px;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    max-width: 74px;
}

.ut-bsb-time {
    font-size: 8px;
    color: #BF5700;
    font-weight: 700;
    line-height: 1.2;
}

.ut-bsb-loc {
    font-size: 7.5px;
    color: rgba(255,255,255,.45);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 74px;
}

.ut-bsb-home,
.ut-bsb-away {
    font-size: 6.5px;
    font-weight: 800;
    letter-spacing: .06em;
    border-radius: 2px;
    padding: 1px 3px;
    display: inline-block;
    margin-top: 2px;
    line-height: 1;
}

.ut-bsb-home {
    background: rgba(191,87,0,.35);
    color: #ff9a50;
}

.ut-bsb-away {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.50);
}

/* Empty state */
.ut-bsb-empty {
    padding: 20px 8px;
    font-size: 9px;
    color: rgba(255,255,255,.40);
    text-align: center;
    line-height: 1.5;
}

/* Footer button */
.ut-bsb-btn {
    display: block;
    text-align: center;
    background: #BF5700;
    color: #ffffff !important;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 7px 4px;
    transition: background 150ms ease;
}

.ut-bsb-btn:hover {
    background: #e06500;
    color: #ffffff !important;
}
