
#modalConfirm .custom-btn {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}


#modalConfirm .cancel-btn {
  background-color: #fff;
  color: #000;
  border: 1px solid #ced4da;
}

#modalConfirm .cancel-btn:hover {
  background-color: #f8f9fa;
}


#modalConfirm .save-btn {
  background-color: #0d6efd; /* azul */
  color: #fff;
  border: none;
}

#modalConfirm .save-btn:hover {
  background-color: #0b5ed7;
}





.custom-modal {
  border-radius: 12px;
  padding: 15px;
}

.modal-sm {
  max-width: 350px;
}


.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 36px;      
  font-weight: bold;
  color: #fff;          
}


.success-icon { background: #4CAF50; }  
.error-icon   { background: #dc3545; }  
.info-icon    { background: #1976D2; }  
.warning-icon { background: #ffc107; color: #000; } 
.question-icon{ background: #6c757d; }   



.modal-text {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; 
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: bold;  
  text-align: center;  
}


.custom-btn.danger-btn {
  background-color: #dc3545;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.custom-btn.danger-btn:hover {
  background-color: #dc3545;
}



.custom-btn.success-btn {
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.custom-btn.success-btn:hover {
  background-color: #4CAF50;
}


.custom-btn.cancelar-btn {
  background-color: #FFFFFF;
  color: #000;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.custom-btn.cancelar-btn:hover {
  background-color: #FFFFFF;
}


.custom-btn.eliminar2-btn {
  background-color: #F54927;
  color: #FFF;
  border: none;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.custom-btn.eliminar2-btn:hover {
  background-color: #F54927;
}

.custom-btn.aceptar-btn {
  background-color: #1976D2;
  color: #FFF;
  border: none;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.custom-btn.aceptar-btn:hover {
  background-color: #1976D2;
}

.custom-btn.error-btn {
  background-color: #dc3545;
  color: #FFF;
  border: none;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.custom-btn.error-btn:hover {
  background-color: #dc3545;
}

.cuadro-formulario {
  border: 2px solid #ccc;
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.ui-widget-overlay {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2000 !important;   
}

.ui-dialog-buttonpane {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  text-align: center !important; 
}


.ui-dialog-buttonpane .ui-dialog-buttonset {
  float: none !important;      
  display: inline-block;     
}

.ui-dialog {
  border-radius: 10px !important;   
  overflow: hidden; 
  z-index: 2100 !important;                
}

.ui-dialog .ui-dialog-content {
  border-radius: 10px !important;  
}


.color_cuadro {
  background-color: #D9D9D9;
}
.amarillo {
  background-color: yellow;
}
.rojo {
  color: red;
  font-weight: bold;
}
.centrado {
  text-align: center;
}
.negrita {
  font-weight: bold;
}

td.borde-rojo {
  border: 1px solid red;
}

/*wizar*/

.wizard-container {
            max-width: 800px;
            margin: 50px auto;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
        }

        .wizard-steps {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .wizard-steps .step {
            flex: 1;
            text-align: center;
            padding: 10px;
            position: relative;
        }

        .wizard-steps .step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            width: 100%;
            height: 2px;
            background-color: #ddd;
            transform: translateY(-50%);
            z-index: -1;
        }
        
        .wizard-steps .step:last-child::after {
            display: none;
        }

        .wizard-steps .step .circle {
            width: 30px;
            height: 30px;
            background-color: #ddd;
            border-radius: 50%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .wizard-steps .step .title {
            display: block;
            margin-top: 5px;
            color: #555;
            font-size: 14px;
        }

        .wizard-steps .step.active .circle {
            background-color: #007bff;
        }

        .wizard-steps .step.active .title {
            font-weight: bold;
            color: #000;
        }
        
        .step-content {
            padding: 20px 0;
        }

        .step-pane {
            display: none;
        }
        
        .step-pane.active {
            display: block;
        }

        .wizard-actions {
            display: flex;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }


.firma-box {
    border: 1px black solid;
    width: 100%;
    height: 300px;
}


.drop-zone {
  border: 2px dashed #0d6efd;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  color: #6c757d;
  cursor: pointer;
  transition: 0.3s;
}
.drop-zone:hover {
  background-color: #f8f9fa;
  color: #0d6efd;
}
.drop-zone img {
  display: none;
  margin: 10px auto;
  max-width: 150px;
  border-radius: 8px;
}
input[type="file"] {
  display: none; /* 🔥 Oculta completamente el botón “Examinar…” */
}

.upload-icon {
        font-size: 2rem;
    }