/* admin-broadcasts-rail.css — left slot on Monitoring */

.admin-broadcasts-rail {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-top-color: color-mix(in srgb, #7dd3fc 16%, var(--border));
    border-left-color: color-mix(in srgb, #7dd3fc 10%, var(--border));
    border-right-color: color-mix(in srgb, #000 25%, var(--border));
    border-bottom-color: color-mix(in srgb, #000 30%, var(--border));
    border-radius: 0.65rem;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow:
        0 1px 0 rgba(125, 211, 252, 0.12),
        0 10px 22px rgba(2, 6, 23, 0.45);
}

.admin-broadcasts-rail-head {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.55rem 0.6rem 0.5rem;
    border-bottom: 1px solid var(--border);
}

.admin-broadcasts-rail-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 1.75rem;
}

.admin-broadcasts-rail-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.admin-broadcasts-rail-toggle {
    flex: 0 0 auto;
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 0.4rem;
    background: var(--bg);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1;
    padding: 0;
}

.admin-broadcasts-rail-search {
    width: 100%;
    box-sizing: border-box;
    padding: 0.4rem 0.55rem;
    border: 1px solid var(--border);
    border-radius: 0.4rem;
    background: var(--bg);
    color: var(--text);
    font: inherit;
    font-size: 0.82rem;
}

.admin-broadcasts-rail-list {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 0.35rem;
}

.admin-broadcasts-rail-empty {
    margin: 0.75rem 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.admin-broadcasts-rail-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    padding: 0.5rem 0.5rem;
    border: 1px solid transparent;
    border-radius: 0.4rem;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.admin-broadcasts-rail-item:hover {
    background: rgba(56, 189, 248, 0.06);
}

.admin-broadcasts-rail-item.is-on {
    border-color: rgba(56, 189, 248, 0.55);
    background: rgba(56, 189, 248, 0.1);
}

.admin-broadcasts-rail-item-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.admin-broadcasts-rail-item-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
}
