/* Estilos para o sistema de verificação de telefone */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 100000;
}

.modal-content button {
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  outline: none;
  position: relative;
  z-index: 100001;
}

.modal-content .btn-confirm {
  border: none;
  background-color: #d4af37;
  color: white;
}

.modal-content .btn-cancel {
  border: 1px solid #ccc;
  background-color: #f8f9fa;
  color: #333;
}

.modal-content .btn-confirm:hover {
  background-color: #b8941f;
}

.modal-content .btn-cancel:hover {
  background-color: #e9ecef;
}

/* Estilos para o spinner de carregamento */
.loader-content {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  max-width: 300px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 100000;
}

.loader-content i {
  font-size: 30px;
  color: #d4af37;
  margin-bottom: 15px;
}

.loader-content p {
  margin: 0;
  color: #333;
}
