/* ===== iOS Alert Style ===== */
.ios-alert {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.ios-alert.show {
  opacity: 1;
  pointer-events: auto;
}

.ios-alert-card {
  width: 280px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  padding: 16px;
  text-align: center;
  animation: iosPop 0.25s ease;
}

@keyframes iosPop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ios-alert-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
  color: #000;
}

.ios-alert-msg {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.ios-alert-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 10px;
  background: #007AFF;
  color: white;
  font-weight: 500;
  cursor: pointer;
}
