/* ============================================================
   ÖZEL EĞİTİM SEANS TAKİP & CANLI WEB E-TABLOSU - CSS
   ============================================================ */

:root {
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-light: #e0f2fe;
  
  --secondary: #475569;
  --dark-navy: #0f172a;
  --dark-slate: #1e293b;
  
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-muted: #f1f5f9;
  
  --border-color: #e2e8f0;
  --border-focus: #38bdf8;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  /* Status Colors */
  --status-geldi-bg: #dcfce7;
  --status-geldi-text: #166534;
  --status-geldi-border: #86efac;
  
  --status-gelmedi-bg: #fee2e2;
  --status-gelmedi-text: #991b1b;
  --status-gelmedi-border: #fca5a5;
  
  --status-izinli-bg: #fef9c3;
  --status-izinli-text: #854d0e;
  --status-izinli-border: #fde047;
  
  --status-telafi-bg: #e0f2fe;
  --status-telafi-text: #075985;
  --status-telafi-border: #7dd3fc;
  
  --status-bos-bg: #f8fafc;
  --status-bos-text: #64748b;
  --status-bos-border: #cbd5e1;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --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 25px -5px rgba(15, 23, 42, 0.08);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  
  --font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Admin Login Styles */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 20px;
}

.login-card {
  width: 100%;
  max-width: 440px;
  padding: 36px 32px;
  text-align: center;
  border: 2px solid #0284c7;
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.login-logo-img {
  max-width: 240px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  margin: 0 auto 16px auto;
  display: block;
}

.login-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.login-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-block {
  width: 100%;
}

.login-hint {
  margin-top: 16px;
  font-size: 12px;
}

/* Network Info Box in Admin Settings */
.network-info-card {
  background: #f0f9ff;
  border: 2px solid #bae6fd;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.network-info-card .net-icon {
  font-size: 36px;
}

.network-info-card strong {
  color: #0369a1;
  font-size: 15px;
}

.network-info-card code {
  background: #e0f2fe;
  color: #0284c7;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

/* ============================================================
   ADMIN SUBNAV & TABS (STRICT DISPLAY SWITCHING)
   ============================================================ */
.admin-subnav-container {
  display: flex;
  justify-content: center;
  margin: 16px 0 24px 0;
  width: 100%;
}

.admin-subnav-pills {
  display: inline-flex;
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  padding: 6px;
  border-radius: var(--radius-lg);
  gap: 8px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-subtab-pill {
  flex: 0 0 auto;
  border: none;
  background: transparent;
  color: #475569;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  user-select: none;
  white-space: nowrap;
}

.admin-subtab-pill:hover {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.85);
}

.admin-subtab-pill.active {
  background: #0284c7;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}

/* Tab Contents: ONLY ACTIVE TAB IS VISIBLE */
.admin-tab-content {
  display: none !important;
}

.admin-tab-content.active {
  display: block !important;
  animation: fadeInTab 0.2s ease-out;
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.app-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ============================================================
   HEADER
   ============================================================ */
.app-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 44px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-slate);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.header-center {
  display: flex;
  justify-content: center;
}

.nav-pills {
  display: flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  gap: 4px;
}

.nav-pill {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.nav-pill:hover {
  color: var(--dark-slate);
  background: rgba(255, 255, 255, 0.6);
}

.nav-pill.active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-status-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.time-info {
  display: flex;
  flex-direction: column;
}

.clock-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-slate);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.date-text {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================================
   MAIN CONTENT & LAYOUT
   ============================================================ */
.main-content {
  flex: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
}

.view-section {
  display: none;
  animation: fadeIn 0.25s ease-out;
}

.view-section.active {
  display: block;
}

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



.admin-subtab-content {
  display: none;
}

.admin-subtab-content.active {
  display: block;
  animation: fadeIn 0.25s ease-out;
}

/* Web Excel Info Banner */
.web-excel-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-md);
}

.web-excel-banner .banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.web-excel-banner .banner-emoji {
  font-size: 32px;
}

.web-excel-banner strong {
  font-size: 16px;
  color: #38bdf8;
  display: block;
}

.web-excel-banner p {
  font-size: 13px;
  color: #cbd5e1;
  margin-top: 2px;
}

.web-excel-banner .banner-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Control Panel */
.control-panel {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.date-select-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.date-select-group input[type="date"],
.custom-select-wrapper select {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-slate);
  outline: none;
}

.strip-quick-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #475569;
}

.strip-quick-stats strong {
  color: #0284c7;
  font-size: 15px;
}

/* ============================================================
   WEB SPREADSHEET CARD (EXCEL GÖRÜNÜMÜ)
   ============================================================ */
.card-container {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.web-spreadsheet-card {
  border: 2px solid #334155;
}

.spreadsheet-header-banner {
  background: #1e293b;
  color: #ffffff;
  padding: 20px 24px;
  text-align: center;
  border-bottom: 3px solid #0284c7;
}

.spreadsheet-header-banner h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.spreadsheet-header-subtitle {
  font-size: 13px;
  color: #38bdf8;
  font-weight: 600;
  margin-top: 4px;
}

.web-spreadsheet-table {
  width: 100%;
  border-collapse: collapse;
}

.web-spreadsheet-table thead th {
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  text-align: left;
}

.web-spreadsheet-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
}

.web-spreadsheet-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.web-spreadsheet-table tbody tr:hover {
  background: #f0fdf4;
}

.web-spreadsheet-table td {
  padding: 11px 14px;
  font-size: 13px;
  border: 1px solid #e2e8f0;
}

.teacher-separator-row td {
  background: #e2e8f0 !important;
  height: 14px !important;
  padding: 0 !important;
  border-top: 2px solid #94a3b8 !important;
  border-bottom: 2px solid #94a3b8 !important;
  border-left: none !important;
  border-right: none !important;
}

.spreadsheet-footer-bar {
  padding: 14px 24px;
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   QR CREATOR & GALLERY
   ============================================================ */
.qr-creator-card {
  padding: 24px;
  background: linear-gradient(to right, #ffffff, #f8fafc);
  border: 2px solid #0284c7;
}

.card-inner-header h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}

.card-inner-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
  margin-bottom: 16px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

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

.qr-cards-section-header h3 {
  font-size: 17px;
  font-weight: 800;
}

.qr-cards-section-header p {
  font-size: 13px;
  color: var(--text-muted);
}

.qr-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.qr-card-item {
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.qr-card-item:hover {
  border-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.qr-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.qr-card-branch {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 12px;
}

.qr-img-wrapper {
  background: #ffffff;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  display: inline-block;
}

.qr-img-wrapper img {
  width: 180px;
  height: 180px;
  display: block;
}

.qr-card-url {
  font-size: 11px;
  color: #0284c7;
  word-break: break-all;
  margin-bottom: 14px;
  background: #f0f9ff;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
}

.qr-card-actions {
  display: flex;
  gap: 8px;
}

.qr-card-actions .btn {
  flex: 1;
}

/* ============================================================
   TEACHER VIEW & SUMMARY CONFIRMATION
   ============================================================ */
.teacher-qr-banner {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.banner-avatar {
  font-size: 38px;
  margin-right: 16px;
}

.banner-info {
  flex: 1;
}

.banner-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #bae6fd;
}

.banner-info h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 2px 0;
}

.banner-info p {
  font-size: 13px;
  opacity: 0.9;
}

.date-pill {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.sheet-card {
  border: 2px solid #cbd5e1;
}

.sheet-header {
  padding: 24px 28px;
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #f8fafc, #ffffff);
}

.sheet-title-badge {
  font-size: 11px;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.sheet-main-title {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
}

.underline-name {
  font-weight: 700;
  color: #0f172a;
  border-bottom: 2px dotted #94a3b8;
}

.sheet-date-box {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 13px;
}

.session-form-table {
  width: 100%;
  border-collapse: collapse;
}

.session-form-table thead th {
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 14px;
  border-bottom: 2px solid #cbd5e1;
  text-align: left;
}

.session-form-table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.session-form-table tbody tr:hover {
  background: #f8fafc;
}

.session-form-table td {
  padding: 12px 14px;
  font-size: 13px;
}

.slot-tag {
  display: inline-block;
  white-space: nowrap;
  background: #e2e8f0;
  color: #1e293b;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12px;
}

.slot-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: #334155;
  font-weight: 600;
  background: #f8fafc;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  letter-spacing: 0.2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.input-student {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-slate);
  outline: none;
}

.input-student:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

.select-program, .select-status {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  outline: none;
  background: #ffffff;
}

.status-geldi { background: var(--status-geldi-bg) !important; color: var(--status-geldi-text) !important; border-color: var(--status-geldi-border) !important; }
.status-gelmedi { background: var(--status-gelmedi-bg) !important; color: var(--status-gelmedi-text) !important; border-color: var(--status-gelmedi-border) !important; }
.status-izinli { background: var(--status-izinli-bg) !important; color: var(--status-izinli-text) !important; border-color: var(--status-izinli-border) !important; }
.status-telafi { background: var(--status-telafi-bg) !important; color: var(--status-telafi-text) !important; border-color: var(--status-telafi-border) !important; }
.status-bos { background: var(--status-bos-bg) !important; color: var(--status-bos-text) !important; border-color: var(--status-bos-border) !important; }

.input-note {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 12px;
  outline: none;
}

.sig-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.sig-checkbox-wrapper input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0284c7;
}

.sheet-footer {
  padding: 20px 28px;
  background: #f8fafc;
  border-top: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sheet-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

/* ============================================================
   TEACHER SUMMARY TEMPLATE (KAYDETME SONRASI ŞABLON)
   ============================================================ */
.teacher-summary-card {
  border: 2px solid #10b981;
  animation: fadeIn 0.3s ease-out;
}

.summary-header {
  padding: 24px 28px;
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  color: #ffffff;
}

.summary-header-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #a7f3d0;
  margin-bottom: 6px;
}

.summary-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.summary-subtitle {
  font-size: 13px;
  color: #d1fae5;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
}

.summary-table thead th {
  background: #f8fafc;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  border-bottom: 2px solid #e2e8f0;
  text-align: left;
}

.summary-table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.summary-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.summary-table td {
  padding: 11px 14px;
  font-size: 13px;
}

.summary-footer {
  padding: 20px 28px;
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.summary-note-text {
  font-size: 13px;
  color: #334155;
  font-style: italic;
}

.summary-actions {
  display: flex;
  gap: 12px;
}

/* ============================================================
   BUTTONS & FORMS
   ============================================================ */
.btn {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-sm { padding: 6px 14px; font-size: 12px; border-radius: var(--radius-sm); }
.btn-lg { padding: 12px 24px; font-size: 14px; font-weight: 700; border-radius: var(--radius-md); }

.btn-primary { background: var(--primary); color: #ffffff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }

.btn-success { background: #16a34a; color: #ffffff; }
.btn-success:hover { background: #15803d; transform: translateY(-1px); }

.btn-google { background: #0f9d58; color: #ffffff; }
.btn-google:hover { background: #0b8043; transform: translateY(-1px); }

.btn-indigo { background: #4f46e5; color: #ffffff; }
.btn-indigo:hover { background: #4338ca; transform: translateY(-1px); }

.btn-outline { background: #ffffff; border: 1px solid var(--border-color); color: var(--dark-slate); }
.btn-outline:hover { background: #f1f5f9; border-color: #cbd5e1; }

.btn-ghost { background: transparent; color: var(--secondary); }
.btn-ghost:hover { background: #e2e8f0; }

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

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--dark-slate);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 9px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 13px;
  outline: none;
}

.form-group input:focus {
  border-color: var(--border-focus);
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

.time-input-pair { display: flex; align-items: center; gap: 8px; }
.time-input-pair input { width: 70px !important; text-align: center; font-weight: 700; }
.toggle-wrapper { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.divider { border: none; border-top: 1px solid var(--border-color); margin: 20px 0; }
.section-subtitle { font-size: 14px; font-weight: 700; color: var(--dark-slate); margin-bottom: 8px; }
.text-muted { color: var(--text-muted); }
.form-actions-split { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }

.status-badge-inline {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #1e293b;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.25s ease-out;
}

.toast.success { background: #065f46; border-left: 5px solid #10b981; }
.toast.error { background: #881337; border-left: 5px solid #f43f5e; }
.toast.info { background: #0c4a6e; border-left: 5px solid #0284c7; }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.app-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 16px 28px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ============================================================
   Wİ-Fİ GÜVENLİK KİLİDİ KARTI & IP TESPİT PANELİ (SİSTEM UYUMLU)
   ============================================================ */
.wifi-security-card {
  padding: 24px;
  margin-bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.wifi-security-card.active-shield {
  border-left: 4px solid #16a34a;
}

.wifi-security-card.inactive-shield {
  border-left: 4px solid #94a3b8;
}

.wifi-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.wifi-card-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wifi-card-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: #f0fdf4;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bbf7d0;
  flex-shrink: 0;
}

.wifi-card-icon-box.inactive {
  background: #f1f5f9;
  color: #64748b;
  border-color: #cbd5e1;
}

.wifi-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-slate);
}

.wifi-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.wifi-status-pill.badge-active {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.wifi-status-pill.badge-inactive {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #cbd5e1;
}

.wifi-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 20px 0;
}

/* Dual IP Detection Grid */
.wifi-detection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.wifi-ip-item-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.2s ease;
}

.wifi-ip-item-card:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.wifi-ip-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.wifi-ip-item-header svg {
  color: var(--primary);
  flex-shrink: 0;
}

.wifi-ip-highlight {
  font-size: 15px;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-weight: 700;
  color: var(--dark-navy);
  word-break: break-all;
}

.wifi-ip-item-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.wifi-rule-badge {
  display: inline-block;
  color: #0284c7;
  font-weight: 600;
  font-size: 11px;
}

/* Action Bar */
.wifi-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.wifi-action-hint {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.wifi-action-hint svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Textarea */
.wifi-ips-textarea {
  width: 100%;
  min-height: 72px;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 13px;
  color: var(--dark-slate);
  background: #ffffff;
  outline: none;
  transition: all 0.2s ease;
  resize: vertical;
  line-height: 1.5;
}

.wifi-ips-textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

/* Modern Switch Toggle */
.wifi-switch-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  cursor: pointer;
  user-select: none;
}

.wifi-switch-input {
  display: none;
}

.wifi-switch-slider {
  position: relative;
  width: 44px;
  height: 24px;
  background: #cbd5e1;
  border-radius: 24px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.wifi-switch-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.wifi-switch-input:checked + .wifi-switch-slider {
  background: #16a34a;
}

.wifi-switch-input:checked + .wifi-switch-slider::before {
  transform: translateX(20px);
}

.wifi-switch-text {
  display: flex;
  flex-direction: column;
}

.wifi-switch-text strong {
  font-size: 13px;
  color: var(--dark-slate);
}

.wifi-switch-text small {
  font-size: 12px;
  color: var(--text-muted);
}

/* Printing: Prints either the Web Spreadsheet or the QR Cards */
@media print {
  body { background: #ffffff !important; }
  .app-header, .app-footer, .admin-subnav-container, .web-excel-banner, .control-panel, .spreadsheet-footer-bar, .toast-container, .qr-cards-section-header button {
    display: none !important;
  }
  .main-content { padding: 0 !important; max-width: 100% !important; }
  .card-container { border: 1px solid #000000 !important; box-shadow: none !important; }
  .web-spreadsheet-card { border: 2px solid #000000 !important; }
  .spreadsheet-header-banner { background: #ffffff !important; color: #000000 !important; border-bottom: 2px solid #000000 !important; }
  .spreadsheet-header-banner h2 { color: #000000 !important; }
  .spreadsheet-header-subtitle { color: #555555 !important; }
  .web-spreadsheet-table thead th { background: #f0f0f0 !important; color: #000000 !important; border: 1px solid #000000 !important; }
  .web-spreadsheet-table td { border: 1px solid #999999 !important; }
  .qr-cards-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .qr-card-item { border: 2px solid #000000 !important; page-break-inside: avoid; }
}

@media (max-width: 900px) {
  .app-header { flex-direction: column; gap: 12px; padding: 12px 16px; }
  .header-left, .header-center, .header-right { width: 100%; justify-content: space-between; }
  .form-grid-3, .form-grid-2 { grid-template-columns: 1fr; }
  .control-panel, .sheet-header { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   GOOGLE SHEETS DEDICATED STYLES & NETWORK GUIDE
   ============================================================ */
.btn-google-primary {
  background: linear-gradient(135deg, #0f9d58 0%, #0b8043 100%);
  color: #ffffff;
  border: 1px solid #0b8043;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(15, 157, 88, 0.35);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-google-primary:hover {
  background: linear-gradient(135deg, #13b365 0%, #0c8a49 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 157, 88, 0.45);
}

.btn-google-primary:active {
  transform: translateY(0);
}

/* Guide Box: Network IP Instructions */
.guide-box-network {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 16px;
}

.guide-box-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.guide-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.guide-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 14px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.guide-step-card .guide-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #0284c7;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 8px;
}

.guide-step-card strong {
  display: block;
  font-size: 13px;
  color: #0f172a;
  margin-bottom: 4px;
}

.guide-step-card p {
  font-size: 12px;
  color: #475569;
  line-height: 1.45;
  margin: 0;
}

.guide-step-card code {
  background: #f1f5f9;
  padding: 1px 5px;
  border-radius: 3px;
  color: #0284c7;
  font-size: 11px;
  font-weight: 600;
}

/* Custom Modal Backdrop & Card */
.custom-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease-out;
}

.custom-modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
  animation: scaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-top-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.custom-modal-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.modal-subtext {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
}

.modal-instruction-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-instruction-box .step-line {
  font-size: 13px;
  color: #166534;
}

.modal-instruction-box kbd {
  background: #ffffff;
  border: 1px solid #86efac;
  border-radius: 4px;
  padding: 2px 6px;
  font-weight: 700;
  font-size: 12px;
  color: #15803d;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* Wi-Fi Security Blocked Card Styles */
.wifi-blocked-card {
  border: 2px solid #ef4444;
  box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.1), 0 8px 10px -6px rgba(239, 68, 68, 0.1);
  animation: scaleUp 0.3s ease-out;
}

.wifi-blocked-icon-wrapper svg {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ============================================================
   MOBILE RESPONSIVE STYLES (ÖĞRETMEN KARTLARI & QR SİSTEMİ)
   ============================================================ */
@media (max-width: 768px) {
  /* 1. GENEL SAYFA VE HEADER DÜZENİ */
  body {
    -webkit-tap-highlight-color: transparent;
  }

  .main-content {
    padding: 12px 10px 90px 10px;
    max-width: 100%;
  }

  .app-header {
    padding: 12px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .brand-logo {
    gap: 10px;
  }

  .brand-logo-img {
    max-height: 44px;
  }

  .brand-title {
    font-size: 15px;
    line-height: 1.25;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .header-right {
    justify-content: flex-start;
  }

  /* 2. ÖĞRETMEN SEANS KARTI BANNER */
  .teacher-qr-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
    border-radius: var(--radius-md);
  }

  .banner-info h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  .banner-right {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .date-pill {
    padding: 4px 12px;
    font-size: 12px;
  }

  /* 3. FİZİKSEL ÇİZELGE KARTI VE BAŞLIK ALANI */
  .sheet-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: visible;
  }

  .sheet-header {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .sheet-title-badge {
    font-size: 10px;
  }

  .sheet-main-title {
    font-size: 17px;
  }

  .sheet-teacher-info {
    font-size: 13px;
  }

  .sheet-header-right {
    width: 100%;
  }

  .sheet-date-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 8px 12px;
  }

  /* 4. SEANS TABLOSUNUN MOBİL KARTLARA DÖNÜŞÜMÜ */
  .table-responsive {
    overflow-x: visible;
    padding: 0;
  }

  .session-form-table {
    display: block;
    width: 100%;
    border-collapse: separate;
  }

  .session-form-table thead {
    display: none !important;
  }

  .session-form-table tbody {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 10px;
    background: #f8fafc;
  }

  .session-form-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 6px -1px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    position: relative;
  }

  .session-form-table tr:focus-within {
    border-color: #0284c7;
    box-shadow: 0 4px 14px -2px rgba(2, 132, 199, 0.15);
  }

  .session-form-table tr.has-student {
    border-left: 5px solid #16a34a !important;
    background: #fcfdfc;
  }

  .session-form-table td {
    display: block;
    padding: 0 !important;
    border: none !important;
    width: 100% !important;
  }

  /* 1. Ders Başlığı ve Saat Rozeti (Üst Satır) */
  .session-form-table td:nth-child(1) {
    grid-column: 1;
    align-self: center;
  }

  .session-form-table .slot-tag {
    font-size: 12px;
    font-weight: 800;
    padding: 5px 10px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 6px;
    display: inline-block;
  }

  .session-form-table td:nth-child(2) {
    grid-column: 2;
    text-align: right;
    align-self: center;
  }

  .session-form-table .slot-time {
    font-size: 12px;
    font-weight: 700;
    color: #0284c7;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-flex;
  }

  /* Öğrenci Adı Soyadı Inputu (Tam Genişlik) */
  .session-form-table td:nth-child(3) {
    grid-column: 1 / -1;
    margin-top: 2px;
  }

  .session-form-table td:nth-child(3)::before {
    content: "Öğrenci Adı Soyadı";
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .session-form-table .input-student {
    width: 100%;
    min-height: 44px;
    font-size: 16px; /* iOS otomatik yakınlaştırmasını önler */
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    box-sizing: border-box;
  }

  .session-form-table .input-student:focus {
    border-color: #0284c7;
    background: #fdfdfd;
  }

  /* Katılım Durumu Dropdown (Tam Genişlik) */
  .session-form-table td:nth-child(4) {
    grid-column: 1 / -1;
  }

  .session-form-table td:nth-child(4)::before {
    content: "Katılım Durumu";
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .session-form-table .select-status {
    width: 100%;
    min-height: 44px;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 8px;
    border-width: 1.5px;
    box-sizing: border-box;
  }

  /* İmza ve Onaylar (Yan Yana 2 Kutu) */
  .session-form-table td:nth-child(5) {
    grid-column: 1;
  }

  .session-form-table td:nth-child(6) {
    grid-column: 2;
  }

  .session-form-table .sig-checkbox-wrapper {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 12px;
    min-height: 44px;
    width: 100%;
    justify-content: center;
    gap: 8px;
    user-select: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
  }

  .session-form-table td:nth-child(5) .sig-checkbox-wrapper:has(input:checked) {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
  }

  .session-form-table td:nth-child(6) .sig-checkbox-wrapper:has(input:checked) {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1d4ed8;
  }

  .session-form-table .sig-checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }

  /* 5. SABİT ALT BUTON (STICKY ACTION BAR) */
  .sheet-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  }

  .sheet-actions {
    width: 100%;
    margin: 0;
  }

  .sheet-actions .btn {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* 6. KAYDETME SONRASI ÖZET ŞABLONU MOBİL GÖRÜNÜMÜ */
  .teacher-summary-card {
    border-radius: var(--radius-md);
  }

  .summary-header {
    padding: 16px;
  }

  .summary-header-badge {
    font-size: 11px;
  }

  .summary-title {
    font-size: 18px;
  }

  .summary-table {
    display: block;
    width: 100%;
  }

  .summary-table thead {
    display: none !important;
  }

  .summary-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 10px;
  }

  .summary-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
  }

  .summary-table td {
    display: block;
    padding: 0 !important;
    border: none !important;
  }

  .summary-table td:nth-child(1) { grid-column: 1; font-weight: 800; font-size: 13px; }
  .summary-table td:nth-child(2) { grid-column: 2; text-align: right; font-size: 12px; color: #0284c7; }
  .summary-table td:nth-child(3) { grid-column: 1 / -1; font-size: 15px; font-weight: 700; color: #0f172a; margin: 4px 0; }
  .summary-table td:nth-child(4) { grid-column: 1; }
  .summary-table td:nth-child(5) { grid-column: 2; text-align: right; }

  .summary-footer {
    padding: 14px 16px;
  }

  .summary-actions .btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  /* 7. İDARE PANELİ ÖĞRETMEN QR KARTLARI (ADMIN TAB 2) */
  .qr-cards-section-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .qr-cards-section-header > div:last-child {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .qr-cards-section-header .btn {
    width: 100%;
    justify-content: center;
  }

  .qr-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .qr-card-item {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .qr-img-wrapper {
    max-width: 220px;
    margin: 0 auto 12px auto;
  }

  .qr-img-wrapper img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .qr-card-actions {
    flex-direction: column;
    gap: 8px;
  }

  .qr-card-actions .btn {
    width: 100%;
    min-height: 40px;
    justify-content: center;
  }

  /* 8. İDARE PANELİ ÜST MENÜ & AYARLAR */
  .admin-subnav-container {
    margin: 12px 0 20px 0;
    width: 100%;
  }

  .admin-subnav-pills {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
  }

  .admin-subtab-pill {
    width: 100%;
    flex: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    justify-content: center;
    text-align: center;
    white-space: normal;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
  }

  .admin-subtab-pill.active {
    background: #0284c7 !important;
    color: #ffffff !important;
    border-color: #0284c7 !important;
  }
}
