/* Modal de procedimientos y checkboxes customizados para Endo Report */



.modal-procedimientos .modal-content {
    border-radius: 18px;
    border: none;
    box-shadow: 0 8px 32px rgba(74, 108, 247, 0.15);
    background: #fff;
}

.modal-procedimientos .modal-header {
    border-bottom: 1px solid #e9ecef;
    background: #f8faff;
    border-radius: 18px 18px 0 0;
}

.modal-procedimientos .modal-title {
    color: #007bff;
    font-weight: 500;
}

.modal-procedimientos .modal-body {
    max-height: 50vh;
    overflow-y: auto;
}

.checkbox-blue {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}

.checkbox-blue input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0;
    z-index: 2;
}

.checkbox-blue .checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 1.5rem;
    width: 1.5rem;
    background: #e6f0ff;
    border-radius: 0.5rem;
    border: 2px solid #3a7afe;
    transition: background 0.2s, border 0.2s;
    box-shadow: 0 2px 6px rgba(58,122,254,0.07);
}

.checkbox-blue input:checked ~ .checkmark {
    background: linear-gradient(135deg, #3a7afe 0%, #007bff 100%);
    border-color: #3a7afe;
}

.checkbox-blue .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-blue input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-blue .checkmark:after {
    left: 0.45rem;
    top: 0.2rem;
    width: 0.35rem;
    height: 0.7rem;
    border: solid #fff;
    border-width: 0 0.2rem 0.2rem 0;
    transform: rotate(45deg);
    content: "";
}

.checkbox-blue span {
    margin-left: 0.5rem;
    color: #344767;
}
