body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: linear-gradient(180deg, #f6f7fb 0%, #edf2ff 100%);
  color: #111827;
  margin: 0;
}

.ai-msg table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ai-msg th {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  font-weight: 600;
  text-align: left;
  padding: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.4);
}

.ai-msg td {
  background: rgba(255,255,255,0.7);
  padding: 10px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.voice-overlay-wave.sending {
  animation: pulse-sending 1.2s ease-in-out infinite;
}

@keyframes pulse-sending {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.voice-overlay-wave.sending::before {
  background: linear-gradient(90deg, #4CAF50, #45a049);
}

/* ======== CHAT LAYOUT: THREE-COLUMN ======== */
#chat-container {
  display: grid;
  grid-template-columns: 230px minmax(0,1.55fr) 285px;
  max-width: 1380px;
  width: min(96vw, 1380px);
  margin: 28px auto;
  height: calc(100vh - 64px);
  padding: 20px 22px;
  background: #ffffff;
  color: #000;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
  column-gap: 18px;
  overflow: hidden;
}

/* ======== LEFT SIDEBAR: LIST OF AI MODELS ======== */
#chat-left-sidebar {
  background: #ffffff;
  padding: 28px 26px;
  overflow-y: auto;
  box-sizing: border-box;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;  
  scrollbar-width: none;
  position: relative;
  font-family: 'Quicksand', 'Inter', 'Poppins', sans-serif;
}

#chat-left-sidebar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

#chat-left-sidebar .sidebar-title {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #232437;
  letter-spacing: -0.01em;
}

.sidebar-subtitle {
  font-size: 0.79rem;
  color: #9aa0b4;
  margin-bottom: 20px;
}

.ai-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ai-item {
  margin-bottom: 10px;
}

.ai-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1f2937;
  padding: 9px 13px;
  border-radius: 0.9rem;
  border: 1px solid transparent;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.ai-link:hover {
  background: hsl(var(--sidebar-accent, 350 80% 96%));
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.07);
  transform: translateX(3px);
}

.ai-item.active .ai-link {
  background: hsl(var(--sidebar-accent, 350 80% 96%));
  border-color: hsl(var(--sidebar-ring, 350 80% 60%) / 0.35);
  box-shadow: 0 8px 20px tomato;
}

.ai-avatar {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ai-avatar::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3ad29f;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.ai-thumb {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(15,23,42,0.12);
}

.ai-thumb-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e5e7eb;
}

.ai-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #232437;
}

.ai-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  min-width: 0;
}

.ai-status {
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(var(--accent, 180 60% 50%));
  letter-spacing: 0.015em;
  text-transform: none;
}

/* ======== CHAT AREA (CENTER) ======== */
#chat-main {
  display: flex;
  flex-direction: column;
  padding: 18px 18px 24px;
  background: #f9fafb;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Quicksand', 'Inter', 'Poppins', sans-serif;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 14px;
  flex-shrink: 0;

}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chat-header-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.35);
  border: 2px solid #fff;
}

.chat-header-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.chat-header-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.chat-header-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a1a6bb;
}

.chat-header-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f1f2c;
}

.chat-header-status {
  font-size: 0.78rem;
  color: #08c3c8;
  border: 1px solid rgba(8,195,200,0.35);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  background: #f6fffe;
}

#chat-ui {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  margin-top: 16px;
  padding: 26px 22px 32px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 25px 64px rgba(15, 23, 42, 0.1);
  min-height: 0;
  overflow: hidden;
}

#chat-log {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  border-radius: 22px;
  padding: 34px 24px 32px;
  min-height: 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(104,118,255,0.65) transparent;
  box-shadow: inset 0 1px 0 rgba(15,23,42,0.03);
  margin-bottom: 18px;
}

#chat-log::-webkit-scrollbar {
  width: 9px;
}

#chat-log::-webkit-scrollbar-track {
  background: rgba(226,232,240,0.55);
  border-radius: 999px;
}

#chat-log::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #b794f4 0%, #fb7185 100%);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

#chat-input-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

#chat-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  background: rgba(255,255,255,0.8);
  color: #111827;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 8px 20px darkviolet;
}

#chat-input:focus {
  border-color: #a78bfa;
  outline: none;
  box-shadow: 0 0 0 2px rgba(167,139,250,0.2);
}

#chat-send {
  padding: 12px 20px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(135deg, #a78bfa, #fbc2eb);
  color: white;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
}

#chat-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(167,139,250,0.4);
}

#chat-mic,
.chat-mic {
  margin-left: 8px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  color: #111827;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);

     /* Hide the text */
  font-size: 0 !important;
  overflow: hidden !important;
}

#chat-mic::before, .chat-mic::before {
  content: "🎙️" !important;
  font-size: 20px !important;
}

.chat-mic.recording {
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(239,68,68,0.6);
  animation: micPulse 1.2s ease-out infinite;
}

@keyframes micPulse {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.voice-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000002;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.voice-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.voice-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
}

.voice-overlay-card {
  position: relative;
  z-index: 1;
  background: #0f1116;
  color: #e5e7eb;
  border-radius: 20px;
  padding: 28px 30px;
  min-width: 240px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.voice-overlay-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.2);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  margin-bottom: 14px;
}

.voice-overlay-status {
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #d1d5db;
  margin-bottom: 14px;
}

.voice-overlay-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 32px;
}

.voice-overlay-wave span {
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  animation: voiceWave 1s ease-in-out infinite;
  opacity: 0.95;
}

.voice-overlay-wave span:nth-child(2) { animation-delay: 0.08s; }
.voice-overlay-wave span:nth-child(3) { animation-delay: 0.16s; }
.voice-overlay-wave span:nth-child(4) { animation-delay: 0.24s; }
.voice-overlay-wave span:nth-child(5) { animation-delay: 0.32s; }

.voice-overlay-wave.transcribing span {
  animation-duration: 1.4s;
  background: linear-gradient(180deg, #fbbf24, #f97316);
}

.voice-overlay-wave.awaiting span {
  animation-duration: 1.2s;
  background: linear-gradient(180deg, #7dd3fc, #0ea5e9);
}

.voice-overlay-wave.speaking span {
  animation-duration: 0.75s;
  background: linear-gradient(180deg, #f472b6, #db2777);
}

@keyframes voiceWave {
  0%, 100% { height: 8px; }
  50% { height: 28px; }
}

#chat-log .user-msg {
  background: var(--gradient-coral, linear-gradient(135deg, #f87171, #fb7185));
  color: #fff;
  padding: 14px 20px;
  border-radius: 20px 20px 6px 20px;
  margin: 12px 0;
  display: block;
  width: fit-content;
  max-width: 70%;
  margin-left: auto;
  text-align: left;
  box-shadow: 0 10px 24px rgba(248,113,113,0.25);
  font-size: 0.95rem;
  line-height: 1.45;
  clear: both;
}

#chat-log .ai-msg {
  background: var(--gradient-lavender, linear-gradient(135deg, #a855f7, #6366f1));
  color: #fff;
  padding: 14px 20px;
  border-radius: 20px 6px 20px 20px;
  margin: 12px 0;
  display: block;
  width: fit-content;
  max-width: 70%;
  margin-right: auto;
  box-shadow: 0 10px 24px rgba(99,102,241,0.18);
  font-size: 0.95rem;
  line-height: 1.45;
  clear: both;
}

/* ======== RIGHT SIDEBAR: CURRENT AI MODEL ======== */
#chat-right-sidebar {
  background: #ffffff;
  border-left: 1px solid #f3f4f6;
  padding: 20px 22px;
  overflow-y: auto;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}

.profile-panel {
  background: #f9fafb;
  border-radius: 24px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.profile-avatar-wrap {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 28px;
  overflow: visible;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1d1f2b !important;
  margin-bottom: 4px;
}

.profile-online {
  font-size: 0.8rem;
  color: #10b981;
  margin-bottom: 12px;
}

.profile-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.profile-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #faf5ff;
  color: #7c3aed;
}

.profile-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  margin-bottom: 6px;
}

.profile-chat-mode-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #a855f7, #fb7185);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin: 4px 0 4px;
  position: relative;
}

.profile-chat-mode-label::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: linear-gradient(120deg, #a855f7, #fb7185);
  opacity: 0.75;
}

.profile-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563 !important;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  
}

.mode-toggle-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.mode-btn {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  color: #374151;
}

.mode-btn:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}

.mode-btn.active {
  border-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  color: #4f46e5;
  font-weight: 700;
}

.mode-btn:active {
  transform: scale(0.98);
}

.ai-typing-indicator {
  background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
  padding: 12px 16px;
  border-radius: 18px;
  margin: 10px 0;
  max-width: 70px;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: inline-block;
}

.typing-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111827;
  margin: 0 2px;
  animation: typing-blink 1.4s infinite;
  opacity: 0;
}

.typing-dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-blink {
  0%, 80%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}

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

#chat-log .user-msg,
#chat-log .ai-msg {
  animation: fadeInUp 0.25s ease-in-out;
}

.swiper
{
  border-radius: 25px;
}



/* ======== MOBILE RESPONSIVE ======== */
@media (max-width: 900px) {
  #chat-container {
    grid-template-columns: 1fr;
    height: 100vh;
    margin: 0;
    border-radius: 0;
    padding: 0;
  }

  #chat-left-sidebar,
  #chat-right-sidebar {
    display: none;
  }

  #chat-main {
    padding: 10px;
    height: 100vh;
  }

  #chat-ui {
    margin-top: 10px;
    padding: 10px;
    height: calc(100vh - 100px);
  }

  #chat-log {
    padding: 10px;
    margin-bottom: 10px;
  }

  #chat-input-area {
    padding: 8px;
    gap: 8px;
  }

  #chat-input {
    padding: 10px;
  }

  #chat-send {
    padding: 10px 16px;
  }
}


/* ======== AGE VERIFICATION MODAL ======== */
.age-verification-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-verification-modal {
  background: white;
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.age-verification-content {
  padding: 40px 30px;
  text-align: center;
}

.age-verification-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.age-verification-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 12px;
}

.age-verification-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.age-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  color: white;
}

.age-btn-yes {
  background: linear-gradient(135deg, #10b981, #059669);
}

.age-btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.age-btn-no {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.age-btn-no:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.age-btn:active {
  transform: scale(0.98);
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .age-verification-content {
    padding: 30px 20px;
  }
  
  .age-verification-content h2 {
    font-size: 1.5rem;
  }
  
  .age-verification-buttons {
    flex-direction: column;
  }
  
  .age-btn {
    width: 100%;
  }
}

/* ======== ISSUE REPORT MODAL (Does not conflict with age verification) ======== */
.issue-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999998; /* Lower than age verification (999999) */
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none; /* Hidden by default, shown via JS */
  align-items: center;
  justify-content: center;
}

.issue-modal {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.issue-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid #e5e7eb;
}

.issue-modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.issue-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.issue-modal-close:hover {
  background: #f3f4f6;
  color: #1f2937;
}

.issue-modal-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #111827;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-primary {
  background: linear-gradient(135deg, #a78bfa, #fbc2eb);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.4);
}

.btn-secondary {
  background: #f3f4f6;
  color: #374151;
}

.btn-secondary:hover {
  background: #e5e7eb;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

#screenshot-preview {
  margin-top: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

#screenshot-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Feedback link styling */
.feedback-link-container {
  margin: 16px 0;
  text-align: left;
  clear: both;
}

.feedback-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #6b7280;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.feedback-link:hover {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.1);
  text-decoration: underline;
}

/* Prevent body scroll when issue modal is open (different class from age verification) */
body.issue-modal-open {
  overflow: hidden;
}

/* Mobile responsiveness for issue modal */
@media (max-width: 600px) {
  .issue-modal {
    max-width: 95%;
    max-height: 95vh;
  }
  
  .issue-modal-header {
    padding: 20px;
  }
  
  .issue-modal-header h3 {
    font-size: 1.25rem;
  }
  
  .issue-modal-body {
    padding: 20px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
