.media-info-card .card-header {
    position: relative;
}

.media-status-indicator {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.media-status-indicator .status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #6b7280;
    animation: breathe-gray 2s ease-in-out infinite;
}

.media-status-indicator.status-online .status-dot {
    background-color: #10b981;
    animation: breathe-green 2s ease-in-out infinite;
}

.media-status-indicator.status-offline .status-dot {
    background-color: #ef4444;
    animation: breathe-red 2s ease-in-out infinite;
}

@keyframes breathe-green {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 8px 4px rgba(16, 185, 129, 0.4);
    }
}

@keyframes breathe-red {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 8px 4px rgba(239, 68, 68, 0.4);
    }
}

@keyframes breathe-gray {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(107, 114, 128, 0.7);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 8px 4px rgba(107, 114, 128, 0.4);
    }
}

