body { 
  font-family: 'Prompt', sans-serif; 
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
}

.sub-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.sub-box:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.search-box-wrapper {
  background: linear-gradient(to right, #fff1f2, #fff);
  border: 1px solid #fecdd3;
  border-left: 5px solid #8B0000;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: #1e293b;
}

.step-number {
  background: #0f172a;
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.event-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fafafa;
  text-align: center;
}

.event-card:hover {
  border-color: #94a3b8;
  background: white;
}

.event-card.selected {
  border-color: #8B0000;
  background: #fff1f2;
  box-shadow: 0 0 0 1px #8B0000;
}

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fcfcfc;
  transition: all 0.2s;
}

.input-field:focus {
  outline: none;
  border-color: #8B0000;
  background: white;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.btn-submit {
  background: linear-gradient(to right, #8B0000, #600000);
  color: white;
  font-weight: 600;
  padding: 1rem;
  border-radius: 10px;
  width: 100%;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(139, 0, 0, 0.3);
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
}

.header-dark .toggle-container {
  color: #cbd5e1;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .slider { background-color: #ef4444; }
input:checked + .slider:before { transform: translateX(24px); }

.text-active { color: #fca5a5; font-weight: bold; }

#previewModal { backdrop-filter: blur(5px); }