/* CRM Principal SPA CSS */

.crm-spa-table {
    font-size: 13px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.crm-spa-table th {
    background: #f1f1f1;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    color: #444;
}

/* Inputs Inline (estilo sutil) */
.crm-inline-input {
    width: 100%;
    box-sizing: border-box;
    padding: 6px;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-bottom: 4px;
    background: transparent;
    transition: all 0.2s;
}
.crm-inline-input:hover {
    border-color: #ddd;
    background: #fafafa;
}
.crm-inline-input:focus {
    border-color: #2271b1;
    background: #fff;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}
.crm-select-origen {
    color: #444;
}

.crm-td-contact { min-width: 160px; }
.crm-td-toggles { min-width: 130px; }
.crm-td-wa { min-width: 250px; }
.crm-td-notas { min-width: 150px; }

/* Toggles Interpuestos */
.crm-toggles-row {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}
.crm-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    opacity: 0.3; /* Estado inactivo */
    transition: all 0.2s;
}
.crm-toggle:hover {
    opacity: 0.7;
}
.crm-toggle.active {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Colores de Toggle requeridos en el prompt */
.crm-bg-verde { background-color: #2ecc71; }
.crm-bg-azul { background-color: #3498db; }
.crm-bg-morado { background-color: #9b59b6; }
.crm-bg-naranja { background-color: #e67e22; }

/* WhatsApp Module */
.crm-wa-select {
    width: 100%;
    margin-bottom: 6px;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.crm-wa-text {
    width: 100%;
    box-sizing: border-box;
    font-size: 11px;
    line-height: 1.3;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    margin-bottom: 6px;
}
.crm-wa-send {
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 6px 0;
}

/* Notas */
.crm-notes-input {
    resize: vertical;
    min-height: 80px;
    font-size: 12px;
    line-height: 1.4;
    border: 1px solid #eee;
    background: #fafafa;
}
