#modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
}
#consulta-modal-close,#respuesta-modal-close, #replica-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

#consulta-modal-close:hover,#respuesta-modal-close:hover, #replica-modal-close:hover {
    color: #f00; /* Cambia de color al pasar el cursor */
}
#modal-close,#respuesta-modal-close, #consulta-modal-close, #replica-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    background: none;
    border: none;
}
.ley{
	font-size: 10px;
	color: #9E9E9E;
}
#modal-close:hover, #consulta-modal-close:hover ,#respuesta-modal-close:hover, #replica-modal-close:hover {
    color: #f00; /* Cambiar color al pasar el ratÃ³n */
    transform: scale(1.2); /* Efecto visual */
}
.replicas {
    padding-left: 20px;
}
.replica{
    margin-bottom: 20px;
}

/* Estilo para el fondo oscuro del modal */
#modal-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Asegura que estÃ© por encima de todo */
}

/* Contenedor del modal */
#modal-message .modal-dialog {
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Encabezado del modal */
#modal-message .modal-header {
    background-color: #007bff; /* Azul moderno */
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BotÃ³n de cerrar */
#modal-message .modal-header .close {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    border: none;
    background: none;
}

/* Cuerpo del modal */
#modal-message .modal-body {
    padding: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Footer del modal */
#modal-message .modal-footer {
    padding: 10px 20px;
    text-align: right;
    background: #f9f9f9;
}

/* BotÃ³n del modal */
#modal-message .modal-footer button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#modal-message .modal-footer button:hover {
    background-color: #0056b3;
}
.block{
	display:block;
	margin-bottom: 15px;
}
label{
	display:block;
}

#respuesta-modal{
	max-width: 1950px;
}
/* Estilo general de los inputs */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 10px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

/* Estilo al enfocar el input */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: #007BFF; /* Color azul para el borde */
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
  background-color: #ffffff;
}

/* Estilo para placeholders */
input::placeholder,
textarea::placeholder {
  color: #999;
  font-style: italic;
}

/* Estilo específico para botones */
button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #4f720c;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #055f1f;
}
