/* Modal Overlay */
.cancellation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Modal Content */
.cancellation-modal-content {
  position: relative;
  background: white;
  border-radius: 6px;
  padding: 36px 32px 32px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); */
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button */
.cancellation-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 16px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  transition: color 0.2s;
}

/* Emoji Icon */
.cancellation-modal-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1;
  animation: scaleIn 0.4s ease-out 0.1s backwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Modal Title */
.cancellation-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 14px 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Modal Message */
.cancellation-modal-message {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 28px 0;
}

/* Modal Button */
.cancellation-modal-button {
  display: inline-block;
  padding: 12px 56px;
  border: none;
  background: #35659E;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

.cancellation-modal-button:active {
  background: #234070;
}

/* Responsive Design */
@media (max-width: 480px) {
  .cancellation-modal-content {
    padding: 32px 24px 28px;
    width: 92%;
  }

  .cancellation-modal-title {
    font-size: 20px;
  }

  .cancellation-modal-message {
    font-size: 13px;
  }

  .cancellation-modal-button {
    padding: 11px 44px;
    font-size: 14px;
  }
}
