/* Shared styles for world-event / casino guide pages */
.event-status {
    margin: 0 0 18px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid #c7d2fe;
    background: #eef2ff;
    color: #312e81;
    font-weight: 700;
}
.event-status.active { background: #dcfce7; border-color: #86efac; color: #14532d; }
.event-status.offline { background: #fff7ed; border-color: #fdba74; color: #9a3412; }
.event-status .sub { display: block; margin-top: 4px; font-weight: 500; font-size: 13px; color: inherit; opacity: .9; }
.cmd-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 0; padding: 0; list-style: none; }
.cmd-list code {
    display: inline-block;
    background: #312e81;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
}
.window-table { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: 14px; }
.window-table th, .window-table td { border-bottom: 1px solid #e5e7eb; padding: 8px; text-align: left; }
.window-table th { color: #667eea; }
.events-day { margin-bottom: 22px; }
.events-day h3 { margin: 0 0 10px; color: #667eea; }
.event-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
    background: #fafafa;
}
.event-card.active { border-color: #86efac; background: #f0fdf4; }
.event-card .when { font-size: 12px; color: #667eea; font-weight: 700; }
.event-card .title { font-weight: 800; color: #111; margin: 2px 0 4px; }
.event-card .note { font-size: 13px; color: #555; }
.event-card a { color: #667eea; font-weight: 700; text-decoration: none; }
