#update-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(7, 14, 39, 0.85);
  z-index: 999;
  font-family: 'Poppins', sans-serif;
}

.update-dialog-content {
  background-color: #070E27;
  border-radius: 16px;
  padding: 32px 24px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 8px 16px #689EFF;
  animation: fadeIn 0.3s ease-in-out;
  margin: 20px;
  position: relative;
}

.update-dialog-content img {
  display: block;
  margin: 0 auto 10px auto;
  width: 100px;
}

.update-dialog-content h2 {
  color: #EBEBED;
  font-size: 20px;
  margin-bottom: 16px;
  text-align: center;
}

.update-dialog-content p {
  color: #CCD2E9;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: left; /* 🔹 texto começa à esquerda */
  white-space: normal; /* 🔹 permite quebra natural */
  word-wrap: break-word; /* 🔹 evita texto estourar */
}

#update-ok-button {
  background-color: #689EFF;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(46, 125, 50, 0.3);
  display: block;
  margin: 0 auto;
}

#update-ok-button:hover {
  background-color: #557EDB;
  box-shadow: 0 6px 10px rgba(46, 125, 50, 0.4);
}

.close-button {
  position: absolute;
  top: 16px;
  left: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #EBEBED;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s ease;
}

.close-button:hover {
  color: #689EFF;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
