.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    transition: background-color 0.3s ease;
}

.status-online {
    background-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.status-warning {
    background-color: #FFC107;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.status-offline {
    background-color: #F44336;
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.5);
}

.status-error {
    background-color: #9E9E9E;
    box-shadow: 0 0 8px rgba(158, 158, 158, 0.5);
}

.status-card {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.status-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.status-card.active {
    transform: scale(0.98);
}

.status-info {
    margin-top: 15px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
}

.status-label {
    color: #666;
    font-size: 0.9em;
}

.status-value {
    font-weight: 500;
    color: #333;
}