#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;
}