#ph-sidebar-calendar { margin-top: 14px; }
.scw-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.scw-header {
    background: linear-gradient(135deg, var(--navy-800), var(--wine-600));
    padding: 14px 16px;
    color: #fff;
}
.scw-title {
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}
.scw-title svg { opacity: 0.7; }
.scw-date-hdr {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-text,var(--accent));
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 14px 4px;
    background: var(--bg-1);
    border-top: 1px solid var(--border);
}
.scw-date-hdr:first-child { border-top: none; }
.scw-match {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    transition: background 0.1s;
}
.scw-match:hover { background: var(--bg-1); }
.scw-add {
    width: 22px; height: 22px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-xs); border: 1px solid var(--border);
    font-size: 14px; font-weight: 700; color: var(--accent-text,var(--accent));
    text-decoration: none; transition: all 0.15s;
    background: var(--surface);
}
.scw-add:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.scw-time {
    font-size: 12px;
    font-weight: 900;
    color: var(--text);
    width: 36px;
    flex-shrink: 0;
}
.scw-teams {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.scw-team {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.scw-team img { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }
.scw-link {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-text,var(--accent));
    text-decoration: none;
    border-top: 1px solid var(--border);
    transition: background 0.1s;
}
.scw-link:hover { background: var(--bg-1); color: var(--accent-hover); }
