:root {
  --bg-dark: #080C14;
  --bg-card: #0F172A;
  --bg-card-hover: #1E293B;
  --border-color: #1E293B;
  --border-focus: #3B82F6;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --accent-pink: #F43F5E;
  --accent-pink-hover: #E11D48;
  --accent-cyan: #06B6D4;
  --accent-green: #10B981;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font);
  display: flex;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* APP LAYOUT */
.app-container {
  display: flex;
  width: 100%;
}

/* SIDEBAR */
.sidebar {
  width: 280px;
  background-color: #0B0F19;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  padding-left: 10px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-pink), #FB7185);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #FFF;
  box-shadow: 0 4px 16px rgba(244, 63, 94, 0.3);
}

.brand-text h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFF;
}

.brand-text span {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-pink);
  letter-spacing: 1.5px;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.nav-item:hover {
  background-color: var(--bg-card);
  color: #FFF;
}

.nav-item.active {
  background: linear-gradient(90deg, rgba(244, 63, 94, 0.15), transparent);
  color: var(--accent-pink);
  border-left: 3px solid var(--accent-pink);
}

.system-status-card {
  background-color: #0F172A;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.status-indicator.online {
  width: 12px;
  height: 12px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-green);
}

.status-info strong {
  display: block;
  font-size: 13px;
  color: #FFF;
}

.status-info span {
  font-size: 11px;
  color: var(--text-dim);
}

/* MAIN CONTENT */
.main-content {
  flex: 1;
  padding: 40px 50px;
  overflow-y: auto;
  max-width: 1400px;
}

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

.header-title h1 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #FFF;
}

.header-title p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-pink), #E11D48);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E11D48, #BE123C);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #1E293B;
  color: var(--text-main);
  border: 1px solid #334155;
}

.btn-secondary:hover {
  background-color: #334155;
  color: #FFF;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-link {
  background: none;
  border: none;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-link:hover {
  text-decoration: underline;
  color: #38BDF8;
}

/* TABS */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.25s ease;
}

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

/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-top: 8px;
  color: #FFF;
}

.text-accent {
  color: var(--accent-pink) !important;
}

/* LOCATIONS GRID */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 24px;
}

.location-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-card:hover {
  border-color: #334155;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.loc-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.loc-card-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #FFF;
}

.loc-card-header span {
  font-size: 12px;
  color: var(--text-dim);
  font-family: monospace;
}

.loc-networks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-instagram { background: rgba(225, 48, 108, 0.2); color: #E1306C; }
.badge-threads { background: rgba(255, 255, 255, 0.15); color: #FFF; }
.badge-linkedin { background: rgba(10, 102, 194, 0.2); color: #0A66C2; }
.badge-success { background: rgba(16, 185, 129, 0.2); color: var(--accent-green); }

.loc-ai-info {
  background: #080C14;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.loc-ai-info strong {
  color: #FFF;
}

.loc-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* CARDS */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px;
}

.card h2 {
  font-size: 22px;
  font-weight: 800;
  color: #FFF;
}

.card .subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 28px;
}

/* PROMPT TEMPLATES (PESCA DE PROMPTS) */
.prompt-templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
  gap: 24px;
}

.prompt-template-card {
  background-color: #080C14;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pt-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pt-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #FFF;
  margin-top: 6px;
}

.pt-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.prompt-code-block {
  background-color: #050811;
  border: 1px solid #1E293B;
  border-radius: var(--radius-sm);
  padding: 16px;
  color: #E2E8F0;
  font-family: 'SFMono-Regular', Consolas, Menlo, monospace;
  font-size: 12px;
  line-height: 1.6;
  max-height: 250px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background-color: #060913;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #FFF;
  font-family: var(--font);
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
  background-color: #080D1A;
}

.code-editor {
  font-family: 'JetBrains Mono', 'Fira Code', 'SFMono-Regular', Consolas, Menlo, monospace;
  font-size: 13px;
  line-height: 1.65;
  background-color: #050811;
  color: #E2E8F0;
  border: 1px solid #1E293B;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 20px;
}

.flex-1 {
  flex: 1;
}

.hint-text {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
  display: block;
}

.action-box {
  background-color: #060913;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* CHECKBOXES */
.checkbox-group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #060913;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.custom-checkbox:hover {
  border-color: #334155;
  background: #090E1C;
}

.check-label strong {
  display: block;
  font-size: 14px;
  color: #FFF;
}

.check-label span {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
  display: block;
  margin-top: 2px;
}

/* PROMPT STUDIO SUB-TABS */
.prompt-studio-header {
  margin-bottom: 20px;
}

.prompt-studio-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #FFF;
  letter-spacing: -0.2px;
}

.sub-nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-nav-btn {
  padding: 8px 16px;
  background-color: #060913;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.sub-nav-btn:hover {
  background-color: #1E293B;
  border-color: #475569;
  color: #FFF;
}

.sub-nav-btn.active {
  background-color: rgba(244, 63, 94, 0.15);
  border-color: var(--accent-pink);
  color: var(--accent-pink);
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.2);
}

.sub-prompt-tab {
  display: none;
}

.sub-prompt-tab.active {
  display: block;
  animation: fadeInContent 0.2s ease-out;
}

.label-with-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.label-with-action label {
  margin-bottom: 0;
}
/* MODAL 2-COLUMN PREMIUM REDESIGN */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 6, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background-color: #0B1120;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1180px;
  height: 90vh;
  max-height: 880px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: modalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.97) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 18px 28px;
  background: #060913;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.modal-header-info h2 {
  font-size: 18px;
  font-weight: 800;
  color: #FFF;
  letter-spacing: -0.3px;
  margin: 0;
}

.modal-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  display: block;
}

.modal-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(244, 63, 94, 0.2);
  border-color: var(--accent-pink);
  color: #FFF;
  transform: rotate(90deg);
}

/* 2-COLUMN MODAL LAYOUT */
.modal-layout {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #080D1A;
}

.modal-sidebar {
  width: 270px;
  flex-shrink: 0;
  background: #050811;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.modal-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font);
  text-align: left;
  width: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
}

.modal-nav-item .nav-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.modal-nav-item .nav-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.modal-nav-item .nav-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #E2E8F0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-nav-item .nav-text small {
  font-size: 11px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  color: #FFF;
}

.modal-nav-item:hover .nav-text strong {
  color: #FFF;
}

.modal-nav-item.active {
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.35);
  box-shadow: 0 0 16px rgba(244, 63, 94, 0.15);
}

.modal-nav-item.active .nav-text strong {
  color: var(--accent-pink);
}

.modal-nav-item.active .nav-text small {
  color: rgba(244, 63, 94, 0.8);
}

.modal-content-area {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  padding: 28px 34px;
  background: #0B1120;
}

.modal-tab-content {
  display: none;
  animation: fadeInContent 0.2s ease-out;
}

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

.modal-tab-content.active {
  display: block;
}

.modal-footer {
  padding: 16px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  background-color: #060913;
  flex-shrink: 0;
}

/* CUSTOM SLEEK SCROLLBARS */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* DATA TABLES */
.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  padding: 14px 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-color);
}

.data-table td {
  padding: 16px 18px;
  font-size: 14px;
  border-bottom: 1px solid #1E293B;
  color: var(--text-main);
}

.alert-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
}

.alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-green);
  color: #34D399;
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #EF4444;
  color: #F87171;
}

/* NETWORK SCHEDULE CARDS (FREQUÊNCIA & INTERVALOS) */
.network-schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.network-schedule-card {
  background: #080C14;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.network-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 14px;
}

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

.network-card-title strong {
  font-size: 16px;
  color: #FFF;
}

.days-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.day-pill {
  cursor: pointer;
  user-select: none;
}

.day-pill input {
  display: none;
}

.day-pill span {
  display: inline-block;
  padding: 6px 14px;
  background: #111827;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.day-pill input:checked + span {
  background: rgba(18, 169, 225, 0.2);
  border-color: var(--accent-blue);
  color: #FFF;
}

.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* STRATEGY ACCORDION & CARDS */
.strategy-section-card {
  background: #080C14;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 10px;
}

.section-card-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: #FFF;
  margin: 0;
}

.field-hint {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: -6px;
  line-height: 1.5;
}

/* THEMES MATRIX DYNAMIC LIST */
.themes-matrix-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.theme-matrix-row {
  background: #0D1526;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.theme-matrix-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.theme-matrix-header strong {
  font-size: 14px;
  color: var(--accent-blue);
}

.btn-remove-theme {
  background: none;
  border: none;
  color: #EF4444;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.btn-remove-theme:hover {
  text-decoration: underline;
}

/* TOGGLE SWITCH (ATIVO / INATIVO) */
.switch-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #334155;
  transition: .3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--accent-green);
}

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

.card-inactive {
  opacity: 0.6;
  filter: grayscale(0.4);
}

.badge-inactive {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

/* RESPONSIVE MODAL MEDIA QUERIES */
@media (max-width: 900px) {
  .modal-container {
    height: 96vh;
    max-height: 96vh;
    border-radius: var(--radius-md);
  }
  .modal-layout {
    flex-direction: column;
  }
  .modal-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    gap: 6px;
    flex-shrink: 0;
  }
  .modal-nav-item {
    padding: 8px 14px;
    width: auto;
    white-space: nowrap;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .modal-nav-item .nav-text small {
    display: none;
  }
  .modal-content-area {
    padding: 20px 18px;
  }
  .form-row {
    flex-direction: column;
    gap: 14px;
  }
  .schedule-row {
    grid-template-columns: 1fr;
  }
}


