/* =====================================================
   RECEPTION - BODA ELANA & ALVARO
   CSS MOBILE FIRST
   Diseño principal: celular
   Adaptación secundaria: PC
===================================================== */

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  font-family: "Cormorant Garamond", serif;
  color: #ffffff;

  background:
    radial-gradient(
      ellipse at 50% 42%,
      rgba(25, 58, 120, .34) 0%,
      rgba(8, 24, 55, .18) 32%,
      rgba(2, 8, 18, 0) 64%
    ),
    radial-gradient(
      ellipse at 50% -10%,
      rgba(75, 110, 180, .14) 0%,
      rgba(20, 45, 95, .09) 26%,
      transparent 58%
    ),
    linear-gradient(
      180deg,
      #01060f 0%,
      #020b18 24%,
      #06172d 48%,
      #041326 72%,
      #020914 100%
    );

  overflow-x: hidden;
}

/* =====================================================
   CONTENEDOR GENERAL
===================================================== */

.reception-page {
  width: 100%;
  min-height: 100vh;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* =====================================================
   TARJETA PRINCIPAL
===================================================== */
.reception-card {
  width: 100%;
  min-height: calc(100vh - 28px);
  padding: 28px 18px 26px;

  border: 1px solid rgba(220, 177, 101, 0.42);
  border-radius: 26px;

  background:
    linear-gradient(
      180deg,
      rgba(1, 6, 15, 0.99) 0%,
      rgba(2, 10, 24, 0.99) 28%,
      rgba(4, 18, 38, 0.98) 58%,
      rgba(2, 9, 20, 0.99) 100%
    );

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.48),
    inset 0 0 42px rgba(0, 0, 0, 0.24),
    inset 0 0 20px rgba(220, 177, 101, 0.025);

  position: relative;
  overflow: hidden;
}
/* Quitamos patrón tipo cuadrícula */
.reception-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  opacity: 0;
  pointer-events: none;
}

/* Brillo superior suave */
.reception-card::after {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(220, 177, 101, 0.18), transparent 62%);
  pointer-events: none;
  animation: receptionGoldGlow 6s ease-in-out infinite;
}

/* =====================================================
   ESTRELLAS DISPERSAS
   Requiere el div .reception-stars-bg en el HTML
===================================================== */

.reception-stars-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.reception-stars-bg span.star {
  position: absolute;
  display: block;
  background: #f6d98a;
  border-radius: 50%;
  opacity: 0.75;

  box-shadow:
    0 0 5px rgba(246, 217, 138, 0.9),
    0 0 12px rgba(220, 177, 101, 0.45);

  animation: receptionStarPulse 4.5s ease-in-out infinite;
}

/* pequeñas */
.reception-stars-bg span.star:nth-child(3n + 1) {
  width: 3px;
  height: 3px;
}

/* medianas */
.reception-stars-bg span.star:nth-child(3n + 2) {
  width: 4px;
  height: 4px;
}

/* grandes con destello */
.reception-stars-bg span.star:nth-child(3n) {
  width: 6px;
  height: 6px;
  opacity: 0.95;

  box-shadow:
    0 0 7px rgba(255, 245, 210, 0.95),
    0 0 16px rgba(220, 177, 101, 0.65),
    0 0 28px rgba(220, 177, 101, 0.32);
}

.reception-stars-bg span.star:nth-child(3n)::before,
.reception-stars-bg span.star:nth-child(3n)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(246, 217, 138, 0.95);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.reception-stars-bg span.star:nth-child(3n)::before {
  width: 24px;
  height: 1px;
}

.reception-stars-bg span.star:nth-child(3n)::after {
  width: 1px;
  height: 24px;
}

/* Posiciones laterales, sin invadir el centro */
.s1  { top: 7%;  left: 4%;  animation-delay: 0.1s; }
.s2  { top: 13%; left: 9%;  animation-delay: 1.1s; }
.s3  { top: 22%; left: 5%;  animation-delay: 2.0s; }
.s4  { top: 31%; left: 11%; animation-delay: 0.7s; }
.s5  { top: 42%; left: 4%;  animation-delay: 1.8s; }
.s6  { top: 60%; left: 10%; animation-delay: 0.3s; }
.s7  { top: 68%; left: 5%;  animation-delay: 1.4s; }
.s8  { top: 80%; left: 11%; animation-delay: 2.2s; }
.s9  { top: 91%; left: 6%;  animation-delay: 0.9s; }

.s10 { top: 8%;  right: 4%;  left: auto; animation-delay: 1.7s; }
.s11 { top: 16%; right: 10%; left: auto; animation-delay: 0.5s; }
.s12 { top: 25%; right: 5%;  left: auto; animation-delay: 2.4s; }
.s13 { top: 36%; right: 11%; left: auto; animation-delay: 1.2s; }
.s14 { top: 48%; right: 4%;  left: auto; animation-delay: 0.6s; }
.s15 { top: 60%; right: 10%; left: auto; animation-delay: 1.9s; }
.s16 { top: 73%; right: 5%;  left: auto; animation-delay: 0.2s; }
.s17 { top: 84%; right: 11%; left: auto; animation-delay: 2.7s; }
.s18 { top: 93%; right: 6%;  left: auto; animation-delay: 1.5s; }

/* =====================================================
   CAPAS DE CONTENIDO
===================================================== */

.reception-header,
.search-section,
.guest-section {
  position: relative;
  z-index: 2;
}

/* =====================================================
   ENCABEZADO
===================================================== */

.reception-header {
  text-align: center;
  margin-bottom: 46px;
}

.reception-label {
  margin: 0;

  display: inline-block;
  overflow: visible;

  font-family: "Cinzel", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;

  background: linear-gradient(
    90deg,
    #b9935a 0%,
    #e7c88d 24%,
    #fff8d8 50%,
    #e7c88d 76%,
    #b9935a 100%
  );

  background-size: 220% auto;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  filter:
    drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 8px rgba(220, 177, 101, 0.18));

  animation: receptionTitleGoldShine 6s linear infinite;
}

.reception-logo {
  display: block;
  width: 150px;
  max-width: 70%;
  height: auto;
  margin: 28px auto 22px;

  filter:
    drop-shadow(0 8px 12px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 14px rgba(220, 177, 101, 0.25));
}

.reception-date {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.82);
}

/* =====================================================
   TÍTULOS Y TEXTOS
===================================================== */

.search-section h2,
.guest-section h2 {
  margin: 0 0 22px;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}

.intro-text {
  max-width: 330px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.helper-text {
  margin: 12px 0 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.58);
}

/* =====================================================
   BUSCADOR
===================================================== */

.search-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-box input {
  width: 100%;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(220, 177, 101, 0.72);
  padding: 0 18px;

  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  color: #f5d79a;

  background: rgba(1, 7, 33, 0.62);
  outline: none;

  box-shadow:
    inset 0 0 18px rgba(0, 0, 0, 0.28),
    0 0 8px rgba(220, 177, 101, 0.08);

  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    transform 0.22s ease;
}

.search-box input::placeholder {
  color: rgba(245, 215, 154, 0.45);
}

.search-box input:focus {
  transform: translateY(-1px);
  background: rgba(1, 7, 33, 0.88);
  color: #f5d79a;
  border-color: rgba(245, 215, 154, 1);

  box-shadow:
    0 0 0 3px rgba(220, 177, 101, 0.13),
    0 0 20px rgba(220, 177, 101, 0.24),
    inset 0 0 20px rgba(0, 0, 0, 0.36);
}

.search-box input::selection {
  background: rgba(220, 177, 101, 0.35);
  color: #ffffff;
}

/* =====================================================
   BOTÓN BUSCAR
   Inspirado en ceremony.css: fondo oscuro, borde dorado y glow
===================================================== */

.search-box button,
.back-btn,
.photo-btn,
.zoom-reset-btn {
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
}

.search-box button {
  width: 58%;
  max-width: 140px;
  height: 46px;
  margin: 10px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(220, 177, 101, 0.82);
  border-radius: 999px;

  background:
    radial-gradient(circle at 50% 0%, rgba(245, 215, 154, 0.20), transparent 42%),
    rgba(1, 7, 33, 0.86);

  color: #dcb165;

  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  cursor: pointer;
  position: relative;
  overflow: hidden;

  box-shadow:
    0 0 8px rgba(220, 177, 101, 0.60),
    0 0 20px rgba(220, 177, 101, 0.30),
    0 0 36px rgba(220, 177, 101, 0.12),
    inset 0 0 12px rgba(220, 177, 101, 0.10);

  
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.search-box button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 95%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 245, 210, 0.12) 34%,
    rgba(255, 245, 210, 0.80) 50%,
    rgba(255, 245, 210, 0.12) 66%,
    transparent 100%
  );

  transform: skewX(-22deg);
  pointer-events: none;

  animation: buttonGoldSweep 10.4s ease-in-out infinite;
}

.search-box button:hover {
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 215, 154, 0.30), transparent 46%),
    rgba(8, 18, 42, 0.96);

  transform: translateY(-2px);
  color: #f5d79a;

  box-shadow:
    0 0 12px rgba(220, 177, 101, 0.78),
    0 0 26px rgba(220, 177, 101, 0.42),
    0 10px 20px rgba(0, 0, 0, 0.30),
    inset 0 0 14px rgba(220, 177, 101, 0.16);
}

.search-box button:active {
  transform: scale(0.96);
}

.search-box button:disabled {
  opacity: 0.70;
  cursor: wait;
  animation: none;
}

/* =====================================================
   RESULTADOS
===================================================== */

.results-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.result-item {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(220, 177, 101, 0.46);
  border-radius: 18px;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));

  color: #ffffff;
  text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  line-height: 1.15;
  cursor: pointer;

  position: relative;
  overflow: hidden;

  box-shadow:
    inset 0 0 14px rgba(220, 177, 101, 0.04),
    0 0 0 rgba(0, 0, 0, 0);

  animation: resultItemIn 0.45s ease both;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.result-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dcb165;
  transform: translateY(-50%) scale(0);

  box-shadow:
    0 0 8px rgba(220, 177, 101, 0.8),
    0 0 18px rgba(220, 177, 101, 0.35);

  transition: transform 0.25s ease;
}

.result-item::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(245, 215, 154, 0.12),
    transparent
  );

  opacity: 0;
  transition: opacity 0.25s ease;
}

.result-item:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 215, 154, 0.8);

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(220, 177, 101, 0.12);
}

.result-item:hover::before {
  transform: translateY(-50%) scale(1);
}

.result-item:hover::after {
  opacity: 1;
}

.result-item.is-selected {
  transform: scale(0.98);
  border-color: rgba(245, 215, 154, 1);
  background: rgba(220, 177, 101, 0.18);

  box-shadow:
    0 0 0 3px rgba(220, 177, 101, 0.12),
    0 0 28px rgba(245, 215, 154, 0.18);
}

.result-item span {
  display: block;
  margin-top: 5px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(245, 215, 154, 0.9);
}

.no-results {
  margin: 18px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

/* =====================================================
   OCULTAR SECCIONES
===================================================== */

.hidden {
  display: none;
}

/* =====================================================
   RESULTADO INVITADO
===================================================== */

.small-title {
  margin: 0 0 6px;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #dcb165;
}

.info-box {
  margin: 16px 0;
  padding: 17px 14px;

  border: 1px solid rgba(220, 177, 101, 0.46);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.07);
  text-align: center;

  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.12),
    0 0 10px rgba(220, 177, 101, 0.04);
}

.info-label {
  margin: 0 0 8px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(245, 215, 154, 0.9);
}

.table-name {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 25px;
  line-height: 1.2;
  color: #ffffff;
}

.confirmed-count {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 34px;
  line-height: 1;
  color: #ffffff;
}

/* =====================================================
   CROQUIS
===================================================== */

.croquis-section {
  margin-top: 20px;
  text-align: center;
}

.croquis-frame {
  width: 100%;
  margin-top: 12px;
  border-radius: 20px;
  overflow: hidden;

  border: 1px solid rgba(220, 177, 101, 0.52);
  background: rgba(255, 255, 255, 0.06);

  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.croquis-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.croquis-frame img:not([src]),
.croquis-frame img[src=""] {
  display: none;
}

.zoom-reset-btn {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;

  border: 1px solid rgba(220, 177, 101, 0.5);
  border-radius: 999px;

  background: rgba(1, 7, 33, 0.72);
  color: #f5d79a;

  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.zoom-reset-btn:hover {
  transform: translateY(-1px);
  background: rgba(8, 18, 42, 0.95);

  box-shadow:
    0 0 10px rgba(220, 177, 101, 0.28),
    0 8px 18px rgba(0, 0, 0, 0.22);
}

.croquis-note {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.65);
}

/* =====================================================
   FOTOS
===================================================== */

.photo-section {
  margin-top: 22px;
  padding: 17px 14px;

  border-radius: 22px;
  background: rgba(220, 177, 101, 0.09);
  border: 1px solid rgba(220, 177, 101, 0.28);

  text-align: center;
}

.photo-section h3 {
  margin: 0 0 8px;
  font-family: "Cinzel", serif;
  font-size: 17px;
  font-weight: 500;
  color: #f5d79a;
}

.photo-section p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.76);
}

.photo-btn {
  width: 100%;
  min-height: 46px;
  padding: 13px 16px;

  border: 1px solid rgba(220, 177, 101, 0.18);
  border-radius: 999px;

  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);

  cursor: not-allowed;
}

.photo-status {
  min-height: 20px;
  margin: 12px 0 0;

  font-size: 15px;
  line-height: 1.25;
  text-align: center;

  color: rgba(255, 255, 255, 0.72);
}

.photo-status.success {
  color: #f5d79a;
  text-shadow: 0 0 8px rgba(220, 177, 101, 0.28);
}

.photo-status.error {
  color: #ffb3b3;
}

.photo-btn:not(:disabled) {
  cursor: pointer;
  color: #dcb165;
  background: rgba(1, 7, 33, 0.82);
  border: 1px solid rgba(220, 177, 101, 0.75);

  box-shadow:
    0 0 6px rgba(220, 177, 101, 0.45),
    0 0 18px rgba(220, 177, 101, 0.18),
    inset 0 0 10px rgba(220, 177, 101, 0.08);
}

.photo-btn:not(:disabled):hover {
  transform: translateY(-2px);
  background: rgba(8, 18, 42, 0.95);

  box-shadow:
    0 0 10px rgba(220, 177, 101, 0.55),
    0 0 22px rgba(220, 177, 101, 0.25),
    0 10px 20px rgba(0, 0, 0, 0.30);
}

.photo-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

/* =====================================================
   BOTÓN VOLVER
===================================================== */

.back-btn {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  padding: 14px 16px;

  border: 1px solid rgba(220, 177, 101, 0.75);
  border-radius: 999px;

  color: #dcb165;
  background: rgba(1, 7, 33, 0.82);

  font-size: 13px;
  font-weight: 700;
  cursor: pointer;

  position: relative;
  overflow: hidden;

  box-shadow:
    0 0 6px rgba(220, 177, 101, 0.45),
    0 0 18px rgba(220, 177, 101, 0.18),
    inset 0 0 10px rgba(220, 177, 101, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.back-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 95%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 245, 210, 0.55),
    transparent
  );

  transform: skewX(-22deg);
  pointer-events: none;
}

.back-btn:hover {
  background: rgba(8, 18, 42, 0.95);
  transform: translateY(-2px);

  box-shadow:
    0 0 10px rgba(220, 177, 101, 0.55),
    0 0 22px rgba(220, 177, 101, 0.25),
    0 10px 20px rgba(0, 0, 0, 0.30);
}

.back-btn:hover::before {
  animation: buttonGoldSweep 0.85s ease forwards;
}

.back-btn:active {
  transform: scale(0.97);
}

/* =====================================================
   ANIMACIONES
===================================================== */

@keyframes receptionStarPulse {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.75);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes receptionGoldGlow {
  0%, 100% {
    opacity: 0.75;
    transform: translateX(-50%) scale(0.96);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

@keyframes buttonGoldSweep {
  0% {
    left: -140%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  42% {
    left: 140%;
    opacity: 0;
  }

  100% {
    left: 140%;
    opacity: 0;
  }
}

@keyframes searchButtonBreath {
  0%, 100% {
    box-shadow:
      0 0 8px rgba(220, 177, 101, 0.52),
      0 0 20px rgba(220, 177, 101, 0.24),
      0 0 36px rgba(220, 177, 101, 0.10),
      inset 0 0 12px rgba(220, 177, 101, 0.10);
  }

  50% {
    box-shadow:
      0 0 12px rgba(220, 177, 101, 0.80),
      0 0 28px rgba(220, 177, 101, 0.38),
      0 0 44px rgba(220, 177, 101, 0.16),
      inset 0 0 14px rgba(220, 177, 101, 0.14);
  }
}

@keyframes resultItemIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes receptionTitleGoldShine {
  0% {
    background-position: 220% center;
  }

  100% {
    background-position: 0% center;
  }
}
/* =====================================================
   CELULARES MUY PEQUEÑOS
===================================================== */

@media (max-width: 360px) {
  .reception-page {
    padding: 10px;
  }

  .reception-card {
    min-height: calc(100vh - 20px);
    padding: 24px 15px;
    border-radius: 22px;
  }

  .reception-label {
    font-size: 13px;
  }

  .reception-logo {
    width: 135px;
  }

  .search-section h2,
  .guest-section h2 {
    font-size: 20px;
  }

  .intro-text {
    font-size: 17px;
  }

  .table-name {
    font-size: 22px;
  }
}

/* =====================================================
   PC / TABLET
   Secundario: mantiene estilo vertical tipo invitación
===================================================== */

@media (min-width: 600px) {
  body {
    background:
      radial-gradient(
        ellipse at 50% 42%,
        rgba(25, 58, 120, .34) 0%,
        rgba(8, 24, 55, .18) 32%,
        rgba(2, 8, 18, 0) 64%
      ),
      radial-gradient(
        ellipse at 50% -10%,
        rgba(75, 110, 180, .14) 0%,
        rgba(20, 45, 95, .09) 26%,
        transparent 58%
      ),
      linear-gradient(
        180deg,
        #01060f 0%,
        #020b18 24%,
        #06172d 48%,
        #041326 72%,
        #020914 100%
      );
  }

  .reception-page {
    padding: 24px 14px;
    align-items: center;
  }

  .reception-card {
    max-width: 480px;
    min-height: 680px;
    padding: 32px 22px;
    border-radius: 28px;
  }

  .reception-logo {
    width: 165px;
  }

  .search-box {
    flex-direction: row;
    align-items: center;
  }

  .search-box input {
    flex: 1;
    min-width: 0;
  }

  .search-box button {
    width: 120px;
    flex: 0 0 120px;
    margin: 0;
  }

  .table-name {
    font-size: 29px;
  }
}