.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 320px;
  width: 90%;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
}

.modal-content button {
  margin: 8px 6px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #443a91;
  background: #fff;
  color: #443a91;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}

.modal-content button:hover {
  background: #665de9;
  color: #fff;
}
