:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-alt: #0f172a;
  --text: #0f172a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --accent: #0ea5e9;
  --accent-strong: #0284c7;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --radius: 12px;
  --shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 4px 14px rgba(15, 23, 42, 0.06);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-strong);
}

a.btn-login,
a.btn-login:visited,
a.btn-login:hover,
a.btn-login:focus,
a.btn-login:active {
  color: #fff;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.navbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar .brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--accent), var(--accent-strong));
}

.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
  background: #e0f2fe;
  color: var(--accent-strong);
}

.content {
  padding: 32px 32px 48px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.page-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.page-title h1 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.4px;
}

.muted {
  color: var(--muted);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

/* Catálogo: grid más espaciado y 4 columnas en desktop */
#catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1024px) {
  #catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #catalog-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.catalog-card {
  padding: 24px;
}

.catalog-video {
  color: var(--accent);
  cursor: pointer;
}

.catalog-video:hover {
  text-decoration: underline;
  color: var(--accent-strong);
}

.dev-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #eef6ff;
  border: 1px solid #d6e4ff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
  animation: devBannerFadeIn 240ms ease-out;
}

.dev-banner strong {
  display: block;
  font-weight: 600;
  color: #1e3a8a;
}

.dev-banner p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #475569;
}

.dev-icon {
  font-size: 20px;
  line-height: 1;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat .label {
  color: var(--muted);
  font-size: 14px;
}

.stat .value {
  font-size: 24px;
  font-weight: 700;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.history-table th,
.history-table td {
  padding: 14px 12px;
  vertical-align: middle;
  line-height: 1.4;
}

.history-table tbody tr {
  min-height: 54px;
  border-bottom: 1px solid #e2e8f0;
}

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

.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 6px;
  border-top: 1px solid #e2e8f0;
}

.rows-per-page {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 12px;
  width: fit-content;
}

.rows-icon {
  width: 36px;
  height: 36px;
  background: #e2e8f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rows-icon svg {
  width: 18px;
  height: 18px;
  fill: #3b82f6;
}

.rows-label {
  font-size: 14px;
  color: #64748b;
}

.rows-select {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rows-select:hover {
  border-color: #3b82f6;
}

.rows-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn,
.page-number {
  height: 36px;
  min-width: 36px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-arrow {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.pagination-btn:hover,
.page-number:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.page-number.active {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: #fff;
  box-shadow: 0 6px 14px rgba(14, 165, 233, 0.25);
}

.pagination-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background: #f8fafc;
}

.pagination-ellipsis {
  color: #94a3b8;
  padding: 0 4px;
}

.page-info {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .table-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .pagination-wrapper {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.badge.success {
  background: #ecfdf3;
  color: var(--success);
}

.badge.error {
  background: #fef2f2;
  color: var(--danger);
}

.badge.waiting {
  background: #fffbeb;
  color: var(--warning);
}

.pill {
  padding: 6px 12px;
  background: #e5e7eb;
  border-radius: 12px;
  font-weight: 600;
  color: var(--text);
  border: none;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
  box-shadow: var(--shadow-soft);
}

.btn.secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
}

.btn-apply-filters {
  height: 42px;
  padding: 0 22px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-apply-filters svg {
  width: 16px;
  height: 16px;
  color: currentColor;
  flex: 0 0 auto;
}

.btn-apply-filters:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}

.btn-apply-filters:active {
  transform: translateY(0);
}

.refresh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid #d9e2f1;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #1f2a44;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(31, 42, 68, 0.06);
  transition: all 0.2s ease;
  cursor: pointer;
}

.refresh-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(31, 42, 68, 0.1);
  border-color: #c8d7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.refresh-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(31, 42, 68, 0.06);
}

.refresh-btn:disabled,
.refresh-btn.is-loading {
  opacity: 0.75;
  cursor: not-allowed;
}

.refresh-btn .refresh-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.refresh-btn.is-loading .refresh-icon {
  animation: refresh-spin 0.8s linear infinite;
}

@keyframes refresh-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.section {
  margin-top: 20px;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.auth-wrapper {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.12), transparent 28%), radial-gradient(circle at 90% 10%, rgba(2, 132, 199, 0.12), transparent 25%), var(--bg);
  padding: 32px 16px;
}

.auth-top-link {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}

.auth-top-link:hover {
  background: #f3f4f6;
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.auth-card {
  width: min(420px, 100%);
  background: var(--surface);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.auth-card h1 {
  margin: 0 0 6px;
  font-size: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f9fafb;
  font-size: 15px;
}

.form-group input:focus {
  outline: 2px solid #e0f2fe;
  border-color: #bae6fd;
}

.autocomplete-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 200px; /* ~5 items */
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  z-index: 20;
  padding: 4px 0;
}

.autocomplete-item {
  padding: 10px 12px;
  cursor: pointer;
  color: var(--text);
}

.autocomplete-item:hover,
.autocomplete-item[aria-selected="true"] {
  background: #e0f2fe;
  color: var(--accent-strong);
}

.helper {
  color: var(--muted);
  font-size: 14px;
}

.horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.placeholder-block {
  padding: 18px;
  border-radius: 12px;
  border: 1px dashed var(--border);
  background: #f9fafb;
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filters-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 24px;
  margin-bottom: 18px;
  transition: all 0.2s ease;
}

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

.filters-header-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filters-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eff6ff;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.filters-header-icon svg {
  width: 20px;
  height: 20px;
}

.filters-title {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  color: #0f172a;
}

.filters-subtitle {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.filters-reset {
  background: transparent;
  border: none;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filters-reset:hover {
  opacity: 0.8;
}

.filters-reset svg {
  width: 16px;
  height: 16px;
}

.clear-filters-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  background: transparent;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.clear-filters-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.clear-filters-btn:hover {
  opacity: 0.85;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.filters-field {
  margin: 0;
}

.filters-field input,
.filters-field select {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #fff;
}

.filters-field input:focus,
.filters-field select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.filters-bot-field {
  position: relative;
}

.filters-bot-field input {
  padding-right: 38px;
}

.filters-search-icon {
  position: absolute;
  right: 12px;
  top: 39px;
  color: #94a3b8;
  pointer-events: none;
}

.filters-search-icon svg {
  width: 16px;
  height: 16px;
}

.filters-actions {
  align-self: end;
}

.filters-apply {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border: none;
  transition: all 0.2s ease;
}

.filters-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 18px;
}

.support-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.support-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.support-card-header h3 {
  margin: 0;
}

.support-card-header .muted {
  margin: 6px 0 0;
}

.support-icon-main {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eaf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-icon-main svg {
  width: 30px;
  height: 30px;
}

.contact-info-box {
  background: #f8fbff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #eaf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-label {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.contact-value {
  color: #2563eb;
  font-weight: 600;
}

.support-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 18px;
}

.support-note svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.support-note-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

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

.support-card .form-group label {
  display: block;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.support-card .form-group input,
.support-card .form-group select,
.support-card .form-group textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  background: #fff;
  color: #0f172a;
}

.support-card .form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.support-card .form-group input:focus,
.support-card .form-group select:focus,
.support-card .form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.support-form-group-search {
  position: relative;
}

.support-submit {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
  transition: all 0.2s ease;
}

.support-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.3);
}

.support-submit svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.support-status {
  display: none;
}

@media (max-width: 720px) {
  .navbar {
    padding: 12px 18px;
  }
  .page-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .horizontal {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .filters-grid {
    grid-template-columns: 1fr;
  }

  .filters-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .filters-actions .filters-apply {
    width: 100%;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* Authenticated layout with sidebar */
.layout {
  min-height: 100vh;
  display: block;
  background: var(--bg);
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  gap: 18px;
  box-shadow: var(--shadow-soft);
}

.sidebar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
}

.sidebar-brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}

.side-link:hover {
  background: #f3f4f6;
  color: var(--text);
}

.side-link.active {
  background: #e0f2fe;
  color: var(--accent-strong);
}

.side-link.side-link--loading {
  pointer-events: none;
  opacity: 0.6;
}

.side-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.side-link-label {
  line-height: 1.2;
}

.side-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.main-area {
  margin-left: 240px;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--surface);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.main-header .user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid var(--border);
  color: #64748b;
  font-weight: 600;
}

.main-header .user-icon,
.main-header .logout-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: #64748b;
}

.main-header .user-name {
  color: #334155;
  line-height: 1;
}

.main-header .chips {
  align-items: center;
}

.main-header .header-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 36px;
  padding: 0;
  border-radius: 12px;
  background: #e5e7eb;
  transition: background 140ms ease;
}

.main-header .header-logout:hover {
  background: #d1d5db;
}

.main-content {
  padding: 28px 28px 40px;
}

@media (max-width: 960px) {
  .layout {
    display: block;
  }
  .sidebar {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .main-area {
    margin-left: 0;
  }
  .nav-group {
    flex-direction: row;
  }
  .main-area {
    min-height: auto;
  }
}

.dashboard-footer {
  margin-top: 40px;
  padding: 40px 28px 20px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.dashboard-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.dashboard-footer .footer-col h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}
.dashboard-footer .footer-col p,
.dashboard-footer .footer-col a {
  margin: 0 0 8px;
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
}
.dashboard-footer svg {
  fill: currentColor;
}
.dashboard-footer .footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.dashboard-footer .footer-col a:hover {
  color: #2563eb;
}
.dashboard-footer .footer-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dashboard-footer .footer-row svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: #64748b;
  transition: color 0.2s ease;
}
.dashboard-footer .footer-hours {
  display: flex;
  flex-direction: column;
}
.dashboard-footer .footer-hours .footer-row {
  display: grid;
  grid-template-columns: 22px auto;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 14px;
}
.dashboard-footer .footer-hours .footer-row:last-child {
  margin-bottom: 0;
}
.dashboard-footer .footer-hours .footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #64748b;
  justify-self: center;
}
.dashboard-footer .footer-hours .footer-icon-fill {
  fill: currentColor;
}
.dashboard-footer .footer-hours .footer-icon-calendar {
  width: 22px;
  height: 22px;
}
.dashboard-footer .footer-hours .footer-icon-stroke {
  fill: none;
  stroke: currentColor;
}
.dashboard-footer .footer-col a.footer-row:hover svg {
  color: #2563eb;
}
.dashboard-footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dashboard-footer .footer-socials a {
  margin: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: color 0.2s ease, background 0.2s ease;
}
.dashboard-footer .footer-socials a:hover {
  color: #2563eb;
  background: #eef2ff;
}
.dashboard-footer .footer-socials svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: currentColor;
}
.dashboard-footer .footer-copy {
  max-width: 1200px;
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
  font-size: 13px;
  color: #64748b;
  text-align: center;
}
@media (max-width: 768px) {
  .dashboard-footer .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .dashboard-footer {
    padding: 34px 20px 18px;
  }
  .dashboard-footer .footer-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
