/* ==========================================================
   EduTec Manager — Sentinela de Conducta (Reportes / Visitas)
   Archivo: assets/css/c-cd-sentinela.css
   ========================================================== */

.etm-cds-container {
    display: inline-block !important;
    vertical-align: middle !important;
}

.etm-cds-circulo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all .3s ease !important;
    cursor: default !important;
}

.etm-cds-icono {
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    color: inherit !important;
}

/* Estado inactivo (sin pendientes) */
.etm-cds-inactivo {
    background: #d1d5db !important;
    color: #6b7280 !important;
}

/* Estado activo (hay pendientes) */
.etm-cds-activo {
    background: #22c55e !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(34, 197, 94, .4) !important;
    cursor: pointer !important;
    animation: etmCdsPulseVerde 2s infinite !important;
}

.etm-cds-activo:hover {
    background: #16a34a !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, .6) !important;
}

.etm-cds-badge {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background: #fff !important;
    color: #22c55e !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    border: 2px solid #22c55e !important;
    box-shadow: 0 2px 4px rgba(0,0,0,.2) !important;
}

@keyframes etmCdsPulseVerde {
    0%, 100% { box-shadow: 0 2px 8px rgba(34, 197, 94, .4); }
    50%      { box-shadow: 0 4px 16px rgba(34, 197, 94, .8); }
}

@media (max-width: 768px) {
    .etm-cds-circulo { width: 35px !important; height: 35px !important; }
    .etm-cds-icono   { font-size: 16px !important; }
    .etm-cds-badge   { width: 18px !important; height: 18px !important; font-size: 10px !important; }
}