/* Toast Notification - Sakura Theme */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  min-width: 300px;
  max-width: 400px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #ffc0d3 0%, #ff69b4 100%);
  color: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.4s ease-out;
  pointer-events: auto;
  font-family: 'Source Sans Pro', Helvetica, sans-serif;
  position: relative;
  overflow: hidden;
}

.toast::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.toast.success {
  background: linear-gradient(135deg, #ffc0d3 0%, #d63384 100%);
}

.toast.error {
  background: linear-gradient(135deg, #ff6b9d 0%, #c9184a 100%);
}

.toast.info {
  background: linear-gradient(135deg, #ffd6e8 0%, #ff69b4 100%);
}

.toast.warning {
  background: linear-gradient(135deg, #ffe0b2 0%, #ff9800 100%);
}

.toast-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.toast-message {
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.8;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.toast-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.toast.removing {
  animation: slideOutRight 0.4s ease-in forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* Confirm Modal - Sakura Theme */
.confirm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
  padding: 20px;
}

.confirm-modal {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
  max-width: 450px;
  width: 100%;
  overflow: hidden;
  animation: scaleIn 0.3s ease-out;
}

.confirm-modal-header {
  background: linear-gradient(135deg, #ffc0d3 0%, #ff69b4 100%);
  color: white;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.confirm-modal-icon {
  font-size: 24px;
}

.confirm-modal-body {
  padding: 24px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.confirm-modal-footer {
  padding: 16px 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.confirm-modal-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Source Sans Pro', Helvetica, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.confirm-modal-btn-primary {
  background: linear-gradient(135deg, #ff69b4 0%, #d63384 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

.confirm-modal-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

.confirm-modal-btn-secondary {
  background: #f5f5f5;
  color: #888;
}

.confirm-modal-btn-secondary:hover {
  background: #e8e8e8;
  color: #666;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }
  
  .toast {
    min-width: auto;
    max-width: none;
  }
  
  .confirm-modal {
    max-width: 100%;
    margin: 0 10px;
  }
}
