/* ===================================================================
   Favorites Section — Minimal styles (supplements program-explorer.css)
   =================================================================== */

/* Favorites list inherits program-item row styling from program-explorer.css.
   Only overrides specific to the favorites context live here. */

#favorites-list {
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Favorites items: two-column (info | actions) */
.favorites-wrapper .program-item {
    grid-template-columns: 1fr auto;
}

/* Favorites action row */
.favorites-wrapper .program-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Empty state */
.empty-favorites {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: #94a3b8;
}

.empty-favorites i {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.empty-favorites p {
    margin: 0.2rem 0;
    max-width: 280px;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .favorites-wrapper .program-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .favorites-wrapper .program-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .favorites-wrapper .program-actions {
        gap: 6px;
    }

    .favorites-wrapper .favorite-apply-btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}
