﻿.scheduled-container {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
}

.recording-card {
    background-color: #161b22;
    border-radius: 6px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.recording-card:hover {
        transform: scale(1.02);
    }

.recording-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.recording-info {
    display: flex;
    flex-direction: column;
}

    .recording-info strong {
        font-size: 1.1rem;
    }

    .recording-info span {
        font-size: 0.9rem;
        color: #ccc;
    }

.checked-radio:has(:checked) {
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity));
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity));
}

.status {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    font-weight: bold;
    color: #58a6ff;
}

.recording-card.live .status {
    color: red;
}

.recording-card.complete .status {
    color: #28a745;
}

.recording-actions {    
    gap: 1rem;
    margin-top: 0.75rem;
}

    .recording-actions button {
        background: none;
        border: none;
        color: white;
        font-size: 1.25rem;
        cursor: pointer;
    }

        .recording-actions button:hover {
            color: #58a6ff;
        }

.rtmp-section {
    margin-top: 0.5rem;
    background: #0f172a;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    word-break: break-all;
    display: none;
}

.recording-card.live .recording-header strong::after {
    content: " LIVE";
    color: red;
    margin-left: 0.5rem;
    animation: blink 1s infinite;
}

.live-recording {
    color: red;
    margin-left: 0.5rem;
    animation: blink 1s infinite;
}
