.arclive-wrapper {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-family: inherit;
    direction: rtl;
    max-width: 400px;
}

.arclive-loader {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding: 20px 0;
}

.arclive-error {
    background: #fdecea;
    color: #a94442;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 10px;
}

.arclive-badge {
    background: #e74c3c;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.arclive-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.arclive-title {
    margin: 0 0 5px 0 !important;
    font-size: 18px !important;
    font-weight: bold;
    color: #333;
}

.arclive-time {
    color: #777;
    font-size: 13px;
    margin-bottom: 15px;
}

.arclive-upcoming {
    border-top: 1px solid #eaeaea;
    padding-top: 15px;
}

.arclive-upcoming h4 {
    margin: 0 0 8px 0 !important;
    font-size: 14px !important;
    color: #666;
}

.arclive-next {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 8px 12px;
    border-radius: 4px;
}

.next-title {
    font-weight: bold;
    color: #444;
}

.next-time {
    color: #888;
    font-size: 12px;
}

.arclive-later {
    margin-top: 12px;
}

.later-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.later-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 6px 10px;
}

.later-title {
    color: #444;
}

.later-time {
    color: #888;
}

.arclive-meta {
    margin-top: 12px;
    font-size: 11px;
    color: #999;
}