@import './reset.css';
@import './layout.css';
@import './camera.css';

/* Toast Notification (Optional for feedback upon submit) */
.toast-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-feedback.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.toast-feedback .toast-icon {
  font-size: 32px;
  color: #10b981;
}

.toast-feedback .toast-title {
  font-size: 16px;
  font-weight: 600;
}

.toast-feedback .toast-subtitle {
  font-size: 13px;
  color: #94a3b8;
}
