.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-alert.show {
  opacity: 1;
  visibility: visible;
}

.custom-alert-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 400px;
  width: 70%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.custom-alert.show .custom-alert-content {
  transform: scale(1);
}

.custom-alert-icon {
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.custom-alert-message {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 25px;
  direction: rtl;
}

.custom-alert-button {
  background: #FFA62B;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.custom-alert-button:hover {
  background: #e6951f;
}