/* Status indicator - univerzálne štýly */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27ae60;
    animation: pulse 2s infinite;
}

.status-indicator.closed .status-dot {
    background: #e74c3c;
}

.status-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-indicator.closed .status-text {
    color: #e74c3c;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive design */
@media (max-width: 768px) {
    .status-indicator {
        padding: 0.4rem 0.8rem;
        margin-right: 0.5rem;
    }
    
    .status-text {
        font-size: 0.8rem;
    }
    
    .status-dot {
        width: 6px;
        height: 6px;
    }
}
