/* BRAIN MODULE - Stiluri proprii */

.brain-module .stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #0d6efd;
    transition: transform 0.2s;
}

.brain-module .stat-card:hover {
    transform: translateY(-3px);
}

.brain-module .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
}

.brain-module .stat-label {
    color: #6c757d;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brain-module .node-status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.brain-module .node-status-dot.online {
    background: #28a745;
}

.brain-module .node-status-dot.offline {
    background: #dc3545;
}

.brain-module .table-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.brain-module .pin-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
}

.brain-module .pin-badge.relay { background: #ffc107; color: #212529; }
.brain-module .pin-badge.temperature { background: #dc3545; color: white; }
.brain-module .pin-badge.humidity { background: #17a2b8; color: white; }
.brain-module .pin-badge.motion { background: #28a745; color: white; }
.brain-module .pin-badge.unknown { background: #6c757d; color: white; }