/* Estilos globales para iconos SVG */
.icon-svg {
    width: 12px !important;
    height: 12px !important;
    display: inline-block !important;
    margin-right: 5px !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
    max-width: 12px !important;
    max-height: 12px !important;
}

/* Estilos para checkboxes personalizados */
.form-check-custom {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.form-check-custom:hover {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.form-check-custom input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-check-custom .checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 20px;
    width: 20px;
    background-color: #e9ecef;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.form-check-custom input[type="checkbox"]:checked ~ .checkmark {
    background-color: #28a745;
}

.form-check-custom .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-check-custom input[type="checkbox"]:checked ~ .checkmark:after {
    display: block;
}

.form-check-custom .form-check-label {
    font-weight: 500;
    color: #495057;
    margin: 0;
    padding-right: 35px;
    cursor: pointer;
}

/* Estilos para pestañas personalizadas */
.nav-tabs-custom .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-weight: 500;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.nav-tabs-custom .nav-link:hover {
    border-bottom-color: #007bff;
    color: #007bff;
    background-color: #f8f9fa;
}

.nav-tabs-custom .nav-link.active {
    border-bottom-color: #007bff;
    color: #007bff;
    background-color: #f8f9fa;
}

.nav-tabs-custom .nav-link i {
    margin-right: 8px;
}

/* Estilos para contenido de pestañas */
.tab-content {
    border: none;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Estilos para canvas de firma */
#signature-pad {
    border: 2px dashed #dee2e6;
    cursor: crosshair;
    border-radius: 8px;
}

/* Estilos para botones grandes */
.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Estilos para página de título */
.page-title-box {
    margin-bottom: 1.5rem;
}

.breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}