/* ===== ESTILOS PARA COMPONENTES ESPECÍFICOS ===== */

/* Tarjetas de habitaciones */
.room-card {
    background: linear-gradient(135deg, #3b82f6, #4f46e5 100%);
    color: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Tarjetas de información en vista detalle */
.info-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

/* Scroll personalizado */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Estados para dispositivos sin habitación */
.no-room-card {
    background: linear-gradient(to right, #4b5563, #1f2937);
    color: white;
}

/* Estados de entidades en vista detalle */
.entity-row:hover {
    background-color: #f9fafb;
}

/* Iconos de estado */
.status-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.status-icon.online {
    background-color: #10b981;
}

.status-icon.offline {
    background-color: #ef4444;
}

.status-icon.problematic {
    background-color: #f59e0b;
}