﻿.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4); /* fondo oscuro translúcido */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.loading-box {
  background: white;
  padding: 30px 60px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.bi {
  font-size: 1.1rem; /* ajusta el tamaño general */
  vertical-align: middle; /* centra verticalmente */
  position: relative;
  top: -0.125em; /* sube ligeramente el ícono */
}

.mud-button i.bi {
  vertical-align: middle;
  position: relative;
  top: -0.125em; /* sube un poco más que el caso general */
  display: inline-flex;
  align-items: center;
}

.text-center {
  text-align: center;
}
