/* Modal de error de sesión */
.modal-error-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001102;
}

.modal-error {
  background: #fff;
  color: #A50034;
  border-radius: 0px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  max-width: 750px;
  text-align: center;
}

.modal-error-title {
  font-size: 1.2rem;
}

.modal-error-text {
  margin: 1rem 0;
  color: #333;
}

.modal-error-btn {
  background: #C00000;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: none !important;
}
.modal-error-btn:hover {
  background: #8D0000;
}
