@import 'components.css';
@import 'contextMenu.css';

/* CONTENEDOR SCROLL DEL MODAL */
.vinculos-container {
    max-height: 55vh;
    /* evita que el modal crezca infinito */
    overflow-y: auto;
    padding: 0.5rem 0.25rem;
}

/* SCROLL BONITO */
.vinculos-container::-webkit-scrollbar {
    width: 8px;
}

.vinculos-container::-webkit-scrollbar-thumb {
    background: #ced4da;
    border-radius: 10px;
}

.vinculos-container::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

.list-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: #fff;
    transition: all 0.15s ease;
}

.list-item:hover {
    border-color: #0d6efd;
    background: #f8f9ff;
}

/* HEADER CLAUSULA */
.clausula-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* TEXTO CLAUSULA */
.clausula-label {
    cursor: pointer;
    margin: 0;
    flex: 1;
    font-weight: 600;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list-item-titulo {
    font: bold 0.9rem/1.2 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.list-item-descripcion {
    color: #6c6c6d;
    font: italic 0.85rem/1.2 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* BADGE POSICION */
.clausula-badge {
    font-size: 11px;
    background: #f1f3f5;
    color: #6c757d;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid #dee2e6;
}

/* SUBLISTA */
.sublist-conteiner {
    margin-top: 8px;
    margin-left: 26px;
    /* alineado con checkbox */
    padding-left: 12px;
    border-left: 2px solid #e9ecef;
}

/* ITEM SUBLISTA */
.sublist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 4px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.sublist-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

/* TEXTO INCISO */
.inciso-label {
    cursor: pointer;
    margin: 0;
    font-size: 0.9rem;
    color: #495057;
    flex: 1;
}

/* META INCISO */
.inciso-meta {
    font-size: 11px;
    color: #868e96;
    margin-left: 6px;
}

/* CHECKBOX MÁS LIMPIO EN MODAL */
.form-check-input {
    cursor: pointer;
    position: relative;
}

/* SUMMERNOTE VARIABLE */
/* .summernote-variable {
    background-color: #f7d497;
    border: 1px solid #f8a218;
    padding: 1px 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    user-select: none;
    
} */

.variables-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
    padding-top: 5px;
}

.lista-variable-item {
    cursor: pointer;
}

.lista-variable-item:hover {
    transform: translateY(-1px);
}

.lista-variable-item:active {
    transform: scale(0.98);
}