.afs-status-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    margin: 10px 0;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    background-color: #6c757d; /* Γκρι χρώμα για την αρχική κατάσταση */
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.status-text {
    font-weight: 500;
    color: #212529;
    font-size: 14px;
}

/* Χρώματα για τις διάφορες καταστάσεις */
.status-indicator.online {
    background-color: #28a745;
}

.status-indicator.offline {
    background-color: #dc3545;
}