/* ============================================================
   servicios.css - VERSIÓN MINIMAL (SOLO ICONOS)
   ============================================================ */

.service-box {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.grupo-servicios {
    margin: 20px 0 10px 0;
    padding: 6px 12px;
    background: #f0f0f0;
    border-left: 4px solid #0078D7;
    border-radius: 4px;
    font-weight: 600;
}

/* CADA SERVICIO EN UNA SOLA LÍNEA */
.service {
    margin-bottom: 4px;
    padding: 4px 8px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    white-space: nowrap;
}

/* ELEMENTOS CON ANCHOS FIJOS */
.estado-icono {
    width: 24px;
    text-align: center;
}

.estado-activo { color: #4CAF50; }
.estado-inactivo { color: #9e9e9e; }

.service-nombre {
    width: 90px;
    font-weight: 600;
}

.service-descripcion {
    width: 140px;
    color: #666;
}

.service-stats {
    width: 120px;
    font-family: monospace;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 12px;
    text-align: center;
}

.service-unidad {
    width: 130px;
    font-family: monospace;
    font-size: 0.8em;
    color: #888;
}

/* BOTONES SOLO ICONO - SIN COLORES DE FONDO */
.service-buttons {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.service-buttons button {
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    padding: 2px 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #555;
}

.service-buttons button:hover {
    background: #f0f0f0;
}

/* Quitamos cualquier color especial para stop */
.service-buttons button.stop {
    background: none;
    color: #555;
}

.service-buttons button.stop:hover {
    background: #f0f0f0;
}