/* BUTTONS */
.btn-back {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 111, 255, 0.3);
    color: white;
}

.btn-refresh {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-refresh:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 111, 255, 0.3);
}

/* Sticky action bars — Programación & Cuadros */
.schedule-action-bar,
.brackets-action-bar {
    overflow: visible;
}

.schedule-action-bar .dropdown-menu,
.brackets-action-bar .dropdown-menu {
    z-index: 50;
}