/**
 * مؤشرات الأسفل للوحة التحكم
 */

.bottom-indicators {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 20px;
    font-size: 12px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-indicators .indicator {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.bottom-indicators .indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.bottom-indicators .indicator.online .dot {
    background-color: #4CAF50;
    animation: pulse 2s infinite;
}

.bottom-indicators .indicator.offline .dot {
    background-color: #f44336;
}

.bottom-indicators .indicator.warning .dot {
    background-color: #ff9800;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.bottom-indicators .status-text {
    font-weight: bold;
}

.bottom-indicators .count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    .bottom-indicators {
        padding: 8px 15px;
        font-size: 11px;
    }
    
    .bottom-indicators .indicator {
        margin: 0 5px;
    }
} 