/* ============================================
   CONFIRMATION MODAL - Glassmorphism Style
   ============================================ */

.confirm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.confirm-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.confirm-modal {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 480px;
  width: calc(100% - 32px);
  padding: 32px;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.confirm-modal-overlay.active .confirm-modal {
  transform: scale(1) translateY(0);
}

/* Icon */
.confirm-modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.2); /* Yellow theme */
  border: 2px solid rgba(251, 191, 36, 0.4);
}

.confirm-modal__icon svg {
  width: 28px;
  height: 28px;
  color: #fbbf24;
  stroke-width: 2.5;
}

/* Content */
.confirm-modal__title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  text-align: center;
  line-height: 1.3;
}

.confirm-modal__message {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 16px;
  text-align: center;
}

.confirm-modal__warning {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.confirm-modal__warning-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #ef4444;
  margin-top: 2px;
}

.confirm-modal__warning-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Buttons */
.confirm-modal__actions {
  display: flex;
  gap: 12px;
}

.confirm-modal__btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-modal__btn--cancel {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.confirm-modal__btn--cancel:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.confirm-modal__btn--confirm {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.confirm-modal__btn--confirm:hover {
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
  transform: translateY(-1px);
}

.confirm-modal__btn--confirm:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 480px) {
  .confirm-modal {
    padding: 24px;
  }
  
  .confirm-modal__title {
    font-size: 20px;
  }
  
  .confirm-modal__message {
    font-size: 14px;
  }
  
  .confirm-modal__actions {
    flex-direction: column-reverse;
  }
  
  .confirm-modal__btn {
    width: 100%;
  }
}
