:root {
  --primary: #1e3a8a;
  --primary-dark: #0f172a;
  --primary-light: #3b82f6;
  --accent-sankalp: #2563eb;
  --accent-sankalp-bg: #eff6ff;
  --accent-gb: #b45309;
  --accent-gb-bg: #fffbeb;
  --accent-ind: #4f46e5;
  --accent-ind-bg: #eef2ff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --bg-gradient: linear-gradient(135deg, #eff6ff 0%, #f8fafc 50%, #fffbeb 100%);
  --card-bg: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px 80px;
}

/* Header & Banner */
.survey-header {
  text-align: center;
  margin-bottom: 24px;
  padding: 24px 20px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--primary-light);
  position: relative;
  overflow: hidden;
}

.header-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.lang-switch-btn {
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-switch-btn:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.team-posters-toggle {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}

.society-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.survey-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
  line-height: 1.25;
}

.survey-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.teams-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-color);
  flex-wrap: wrap;
}

.team-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.team-pill.sankalp {
  background: var(--accent-sankalp-bg);
  color: var(--accent-sankalp);
  border: 1px solid #a7f3d0;
}

.team-pill.gb {
  background: var(--accent-gb-bg);
  color: var(--accent-gb);
  border: 1px solid #fde68a;
}

.team-pill.ind {
  background: var(--accent-ind-bg);
  color: var(--accent-ind);
  border: 1px solid #c7d2fe;
}

.team-pill-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

/* Confidentiality Notice */
.confidentiality-banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.confidentiality-banner::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.conf-icon {
  font-size: 2.2rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}

.conf-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fde047;
}

.conf-text-hindi {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 6px;
  color: #f8fafc;
  font-weight: 500;
}

.conf-text-en {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #cbd5e1;
}

.conf-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.conf-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.76rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: #ffffff;
}

/* Security & Geofence Bar */
.security-bar {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.geo-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #94a3b8;
  display: inline-block;
  flex-shrink: 0;
}

.status-dot.active {
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  animation: pulseDot 2s infinite;
}

.status-dot.warning {
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.status-dot.error {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.geo-btn {
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.geo-btn:hover {
  background: #e2e8f0;
}

/* Post Sections */
.post-section {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
  flex-wrap: wrap;
  gap: 8px;
}

.post-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.post-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.post-title-hindi {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.post-rule-badge {
  background: #f1f5f9;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Candidate Cards Grid */
.candidate-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.candidate-grid-exec {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

/* Candidate Card */
.candidate-card {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.candidate-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.candidate-card.selected {
  border-color: var(--primary-light);
  background: #f0f7ff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25), var(--shadow-md);
}

.candidate-card.selected.team-sankalp-card {
  border-color: var(--accent-sankalp);
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25), var(--shadow-md);
}

.candidate-card.selected.team-gb-card {
  border-color: var(--accent-gb);
  background: #fffdf5;
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.25), var(--shadow-md);
}

.candidate-card.selected.team-ind-card {
  border-color: var(--accent-ind);
  background: #f5f3ff;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25), var(--shadow-md);
}

.card-ballot-num {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1e293b;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-team-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.badge-sankalp {
  background: var(--accent-sankalp-bg);
  color: var(--accent-sankalp);
  border: 1px solid #bfdbfe;
}

.badge-gb {
  background: var(--accent-gb-bg);
  color: var(--accent-gb);
  border: 1px solid #fde68a;
}

.badge-ind {
  background: var(--accent-ind-bg);
  color: var(--accent-ind);
  border: 1px solid #c7d2fe;
}

.candidate-photo-wrap {
  width: 100%;
  max-width: 140px;
  height: 175px;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px auto 12px;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.candidate-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.candidate-card:hover .candidate-photo-wrap img {
  transform: scale(1.03);
}

.candidate-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.candidate-name-hindi {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.candidate-qual {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2563eb;
  background: #eff6ff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
  display: inline-block;
}

.candidate-subtext {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 4px;
}

.selection-indicator {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.checkbox-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.candidate-card.selected .radio-circle,
.candidate-card.selected .checkbox-box {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

.candidate-card.selected.team-sankalp-card .radio-circle,
.candidate-card.selected.team-sankalp-card .checkbox-box {
  background: var(--accent-sankalp);
  border-color: var(--accent-sankalp);
}

.candidate-card.selected.team-gb-card .radio-circle,
.candidate-card.selected.team-gb-card .checkbox-box {
  background: var(--accent-gb);
  border-color: var(--accent-gb);
}

.candidate-card.selected .selection-indicator {
  color: var(--primary-dark);
}

.radio-inner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  display: none;
}

.checkbox-inner-check {
  color: #ffffff;
  font-size: 0.75rem;
  display: none;
}

.candidate-card.selected .radio-inner-dot,
.candidate-card.selected .checkbox-inner-check {
  display: block;
}

/* Sticky Executive Counter */
.exec-counter-bar {
  position: sticky;
  top: 16px;
  z-index: 50;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  border: 2px solid #3b82f6;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  backdrop-filter: blur(8px);
}

.counter-text {
  font-weight: 800;
  font-size: 1.05rem;
  color: #1e3a8a;
}

.counter-badge {
  background: #eff6ff;
  color: #1d4ed8;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 800;
  border: 1px solid #bfdbfe;
}

.counter-badge.limit-reached {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

/* Comments Section */
.comment-section {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.comment-textarea {
  width: 100%;
  height: 100px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  transition: var(--transition);
}

.comment-textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Submit Action Bar */
.submit-container {
  text-align: center;
  margin: 32px 0 16px;
}

.btn-submit-ballot {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-submit-ballot:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

.btn-submit-ballot:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Modal for Posters */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.85);
  z-index: 1000;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
}

.posters-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.poster-box img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

/* Success View & Stats */
.success-screen {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
  border-top: 6px solid #10b981;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 14px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.stats-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

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

.stat-group-title {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.stat-bar-wrap {
  margin-bottom: 8px;
}

.stat-label-flex {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-bar-bg {
  background: #e2e8f0;
  height: 16px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: var(--radius-full);
  transition: width 0.8s ease;
}

.stat-bar-fill.sankalp-fill {
  background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
}

.stat-bar-fill.gb-fill {
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.stat-bar-fill.ind-fill {
  background: linear-gradient(90deg, #6366f1 0%, #4338ca 100%);
}

.comments-feed {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 16px;
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  text-align: left;
}

.comment-bubble {
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  border-left: 3px solid var(--primary-light);
  box-shadow: var(--shadow-sm);
}

/* Toast Notifications */
.toast-msg {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f172a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  font-weight: 600;
  font-size: 0.92rem;
  z-index: 2000;
  animation: slideUp 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-msg.toast-error {
  background: #dc2626;
}

.toast-msg.toast-success {
  background: #059669;
}

@keyframes slideUp {
  0% { transform: translate(-50%, 20px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

/* Results Hidden Notice */
.results-hidden-card {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  color: #475569;
  margin: 16px 0;
}

.results-hidden-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.results-hidden-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
}

.results-hidden-sub {
  font-size: 0.9rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

/* Admin floating trigger */
.admin-toolbar {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-toggle-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.admin-toggle-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Comprehensive Responsive Tweaks */
@media (max-width: 768px) {
  .container {
    padding: 10px 12px 70px;
  }
  .survey-header {
    padding: 18px 14px;
    margin-bottom: 16px;
  }
  .survey-title {
    font-size: 1.45rem;
  }
  .post-section {
    padding: 16px 14px;
    margin-bottom: 16px;
  }
  .candidate-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .candidate-grid-exec {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .candidate-card {
    padding: 10px 8px;
  }
  .candidate-photo-wrap {
    height: 145px;
    max-width: 120px;
    margin: 6px auto 8px;
  }
  .candidate-name {
    font-size: 0.95rem;
  }
  .candidate-name-hindi {
    font-size: 0.85rem;
  }
  .card-team-badge {
    font-size: 0.68rem;
    padding: 2px 6px;
    top: 6px;
    right: 6px;
  }
  .exec-counter-bar {
    top: 8px;
    padding: 10px 14px;
  }
  .counter-text {
    font-size: 0.92rem;
  }
  .counter-badge {
    font-size: 0.85rem;
    padding: 3px 10px;
  }
  .btn-submit-ballot {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 8px 8px 60px;
  }
  .survey-title {
    font-size: 1.3rem;
  }
  .header-top-bar {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .lang-switch-btn, .team-posters-toggle {
    justify-content: center;
    width: 100%;
    padding: 8px;
  }
  .candidate-grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .candidate-grid-exec {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .candidate-photo-wrap {
    height: 130px;
    max-width: 105px;
  }
  .candidate-name {
    font-size: 0.88rem;
  }
  .candidate-name-hindi {
    font-size: 0.8rem;
  }
  .confidentiality-banner {
    padding: 16px 14px;
  }
  .conf-icon {
    display: none;
  }
  .security-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
  }
  .geo-btn {
    width: 100%;
    padding: 8px;
  }
}

