/* ============================================
   RESET BASE
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #1f2d3d;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

/* ============================================
   PANTALLA DE LOGIN
   ============================================ */

.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: linear-gradient(160deg, #0f5c82 0%, #146c94 45%, #1a8a6f 100%);
  position: relative;
  overflow-x: hidden;
}

.login-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.login-aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: loginAuroraFloat 14s ease-in-out infinite;
}

.login-aurora-blob--a {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
}

.login-aurora-blob--b {
  width: 340px;
  height: 340px;
  bottom: -140px;
  right: -80px;
  background: radial-gradient(circle, rgba(43, 209, 145, 0.45), transparent 70%);
  animation-delay: -4s;
}

@keyframes loginAuroraFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -16px) scale(1.05); }
}

.login-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
}

.login-box-body {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(8, 20, 30, 0.35);
  padding: 32px 24px;
  animation: loginCardIn 0.5s ease;
}

@keyframes loginCardIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-logo {
  text-align: center;
}

.login-logo-img {
  max-height: 84px;
  max-width: 100%;
}

.login-welcome {
  text-align: center;
  color: #1f2d3d;
  font-size: 19px;
  font-weight: 700;
  margin: 14px 0 2px;
}

.login-subtitle {
  text-align: center;
  color: #7c8a9a;
  font-size: 13px;
  margin: 0 0 22px;
}

.login-field {
  position: relative;
  margin-bottom: 14px;
}

.login-field-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #9aa8b8;
  font-size: 14px;
  pointer-events: none;
}

.login-field-prefix {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #7c8a9a;
  font-weight: 600;
  font-size: 14px;
}

.login-input {
  width: 100%;
  height: 46px;
  padding: 0 16px 0 40px;
  border: 1px solid #e1e6ec;
  border-radius: 10px;
  background: #f7f9fb;
  font-size: 15px;
  color: #1f2d3d;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.login-input::placeholder {
  color: #a7b2bf;
}

.login-input:focus {
  outline: none;
  border-color: #1f6f9f;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 111, 159, 0.14);
}

.login-input--prefixed {
  padding-left: 34px;
}

.login-field input[name="ingPassword"] {
  padding-right: 42px;
}

.login-toggle-pass {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #9aa8b8;
  padding: 8px;
  cursor: pointer;
}

.login-toggle-pass:hover {
  color: #1f6f9f;
}

.login-toggle-pass:focus {
  outline: none;
}

.login-submit-btn {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #146c94, #21875b);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 108, 148, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.login-submit-btn:hover,
.login-submit-btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(20, 108, 148, 0.36);
  filter: brightness(1.04);
}

.login-submit-btn:active {
  transform: translateY(0);
}

.login-box-body .alert {
  border: 0;
  border-left: 3px solid #d9534f;
  border-radius: 8px;
  background: #fdecea;
  color: #a33a35;
  font-size: 13px;
  padding: 10px 14px;
  margin-top: 12px;
}

.login-footnote {
  text-align: center;
  color: #aab5c0;
  font-size: 11px;
  margin: 20px 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .login-aurora-blob,
  .login-box-body {
    animation: none;
  }
}

/* ============================================
   PANTALLA PLACEHOLDER (temporal, hasta rehacer el tablero)
   ============================================ */

.app-body {
  min-height: 100vh;
  background: #eef2f6;
}

.placeholder-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.placeholder-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.1);
  padding: 40px 28px;
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.placeholder-icon {
  font-size: 40px;
  color: #21875b;
  margin-bottom: 12px;
}

.placeholder-card h1 {
  font-size: 20px;
  margin: 0 0 8px;
}

.placeholder-card p {
  color: #4b5f73;
  margin: 0 0 4px;
  font-size: 14px;
}

.placeholder-sub {
  color: #93a1b0 !important;
  font-size: 13px !important;
}

.placeholder-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #f2f5f8;
  color: #1f6f9f;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.placeholder-link:hover {
  background: #e6f3f8;
}

/* ============================================
   APP SHELL (topbar + sidebar + contenido)
   ============================================ */

.app-body {
  background: #eef2f6;
}

.app-shell {
  min-height: 100vh;
  padding-top: 56px;
}

/* ---------- Topbar ---------- */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  background: linear-gradient(135deg, #146c94, #0f5c82);
  box-shadow: 0 4px 16px rgba(15, 92, 130, 0.22);
  z-index: 1000;
}

.topbar-logo {
  display: flex;
  align-items: center;
  height: 40px;
}

.topbar-logo-img {
  height: 32px;
}

.topbar-toggle {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.topbar-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.topbar-dropdown {
  position: relative;
}

.topbar-icon-btn {
  position: relative;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.topbar-icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.topbar-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 8px;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  color: #fff;
}

.topbar-badge--primary {
  background: #1c7da8;
}

.topbar-badge--warning {
  background: #c9831f;
}

.topbar-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 300px;
  max-width: 88vw;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.22);
  overflow: hidden;
  z-index: 1100;
}

.topbar-dropdown-menu.is-open {
  display: block;
}

.topbar-dropdown-title {
  margin: 0;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7c8a9a;
  border-bottom: 1px solid #eef1f4;
}

.topbar-dropdown-scroll {
  max-height: 220px;
  overflow-y: auto;
}

.topbar-dropdown-item {
  display: block;
  padding: 10px 14px;
  color: #33485f;
  font-size: 13px;
  border-bottom: 1px solid #f2f4f7;
  text-decoration: none;
}

.topbar-dropdown-item:hover {
  background: #f7f9fb;
}

.topbar-dropdown-footer {
  display: block;
  padding: 10px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #1f6f9f;
  background: #f7f9fb;
  text-decoration: none;
}

.topbar-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  cursor: pointer;
}

.topbar-user-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.topbar-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.topbar-avatar--lg {
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  display: block;
}

.topbar-user-name {
  font-size: 13px;
  font-weight: 600;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .topbar-user-name {
    display: none;
  }
}

.topbar-user-card {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #eef1f4;
}

.topbar-user-card-name {
  margin: 0;
  font-weight: 700;
  color: #1f2d3d;
}

.topbar-user-card-role {
  margin: 2px 0 0;
  font-size: 12px;
  color: #7c8a9a;
}

/* ---------- Sidebar ---------- */

.sidebar {
  position: fixed;
  top: 56px;
  bottom: 0;
  left: 0;
  width: 230px;
  background: #fff;
  box-shadow: 1px 0 0 rgba(0, 0, 0, 0.06);
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 950;
  transition: width 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Movil: la barra se oculta por completo (fuera de pantalla), no deja franja */
@media (max-width: 991px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.sidebar--open {
    transform: translateX(0);
    box-shadow: 6px 0 30px rgba(16, 24, 40, 0.18);
  }

  .app-content,
  .app-footer {
    margin-left: 0;
  }
}

/* Escritorio: la barra queda como franja de iconos y se expande al togglear */
@media (min-width: 992px) {
  .sidebar {
    width: 64px;
  }

  .sidebar.sidebar--open {
    width: 230px;
    box-shadow: 6px 0 30px rgba(16, 24, 40, 0.18);
  }

  .sidebar:not(.sidebar--open) .sidebar-link {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .sidebar:not(.sidebar--open) .sidebar-link span,
  .sidebar:not(.sidebar--open) .sidebar-group-caret,
  .sidebar:not(.sidebar--open) .sidebar-submenu {
    display: none;
  }

  /* Con la barra colapsada no hay espacio para desplegar el submenu en
     linea, asi que sale como panel flotante junto al icono. Se posiciona
     "fixed" (con top/left calculados por JS) en vez de "absolute" porque
     el .sidebar tiene overflow-x:hidden y recortaria un panel absoluto
     que sobresale de su ancho. */
  .sidebar:not(.sidebar--open) .sidebar-group--open > .sidebar-submenu {
    display: block;
    position: fixed;
    width: 200px;
    padding: 8px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 6px 6px 30px rgba(16, 24, 40, 0.2), 0 0 0 1px rgba(16, 24, 40, 0.06);
    z-index: 1150;
  }
}

.sidebar-nav {
  padding: 10px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 11px 12px;
  margin-bottom: 2px;
  border-radius: 8px;
  color: #40566d;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.sidebar-link i:first-child {
  width: 18px;
  text-align: center;
  color: #8a97a5;
}

.sidebar-link:hover,
.sidebar-link--active {
  background: #e6f3f8;
  color: #146c94;
}

.sidebar-link:hover i:first-child,
.sidebar-link--active i:first-child {
  color: #146c94;
}

.sidebar-group-caret {
  margin-left: auto;
  font-size: 11px;
  transition: transform 0.15s ease;
}

.sidebar-group--open > .sidebar-group-toggle .sidebar-group-caret {
  transform: rotate(180deg);
}

.sidebar-submenu {
  display: none;
  padding-left: 30px;
  margin-bottom: 4px;
}

.sidebar-group--open > .sidebar-submenu {
  display: block;
}

.sidebar-sublink {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 8px 10px;
  color: #546a80;
  font-size: 12.5px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}

.sidebar-sublink:hover {
  color: #146c94;
  background: #eef7fb;
}

/* ---------- Contenido ---------- */

.app-content {
  padding: 20px 16px 8px;
}

@media (min-width: 992px) {
  .app-content {
    padding: 24px 28px 8px;
    margin-left: 64px;
  }
}

.page-header h1 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  color: #1f2d3d;
}

.page-header h1 small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #7c8a9a;
  margin-top: 2px;
}

/* ---------- Toolbar de acciones sobre listados ---------- */

.toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

/* ---------- Tablas de datos (listados administrativos) ---------- */

.data-table-wrap {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #7c8a9a;
  border-bottom: 1px solid #eef1f4;
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  font-size: 13.5px;
  color: #33485f;
  border-bottom: 1px solid #f2f4f7;
  vertical-align: middle;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table tr:hover td {
  background: #f7f9fb;
}

.table-actions {
  display: flex;
  gap: 6px;
}

.icon-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  color: #fff;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.icon-btn--success { background: #21875b; }
.icon-btn--warning { background: #c9831f; }
.icon-btn--danger { background: #d9534f; }
.icon-btn--muted { background: #7c8a9a; }

.icon-btn:hover {
  filter: brightness(1.08);
}

.icon-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: none;
}

.empty-state {
  padding: 32px 20px;
  text-align: center;
  color: #93a1b0;
  font-size: 13.5px;
}

/* ---------- Selector con buscador (modales tipo picker) ---------- */

.picker-search {
  margin-bottom: 12px;
}

.picker-table-wrap {
  max-height: 480px;
  overflow-y: auto;
}

.picker-table-wrap thead th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

/* ---------- Paginacion ---------- */

.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  font-size: 13px;
  color: #4b5f73;
}

.pagination-bar button {
  width: 32px;
  height: 32px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #fff;
  color: #33485f;
  cursor: pointer;
}

.pagination-bar button:hover:not(:disabled) {
  background: #f2f5f8;
}

.pagination-bar button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---------- Panel cards genericas (grafico, formularios, listas) ---------- */

.panel-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  margin-bottom: 16px;
}

.panel-card--brand {
  position: relative;
  background: linear-gradient(135deg, #146c94, #21875b);
  color: #fff;
}

.panel-card--brand::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.panel-card--brand .panel-card-body {
  position: relative;
}

.panel-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid #eef1f4;
}

.panel-card--brand .panel-card-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.panel-card-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

/* ---------- Escaner de codigo de barras ---------- */

.scanner-field {
  margin-bottom: 16px;
}

.scanner-input {
  width: 100%;
  border: 2px solid #21875b;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 17px;
  text-align: center;
  font-weight: 700;
  color: #146c94;
  background: #f7fbfa;
}

.scanner-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 135, 91, 0.16);
}

.scanner-hint {
  margin: 6px 0 0;
  font-size: 12px;
  color: #7c8a9a;
  text-align: center;
}

/* ---------- Insignia de stock ---------- */

.stock-badge {
  display: inline-block;
  min-width: 34px;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #7c8a9a;
}

.stock-badge--danger { background: #d9534f; }
.stock-badge--warning { background: #c9831f; }
.stock-badge--success { background: #21875b; }

.panel-card-body {
  padding: 18px;
}

.panel-card-footer {
  padding: 14px 18px;
  border-top: 1px solid #eef1f4;
}

.panel-card-footer--center {
  text-align: center;
}

.panel-card-footer--center a {
  color: #1f6f9f;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

/* ---------- Formularios genericos ---------- */

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-row--logo {
  align-items: center;
}

@media (min-width: 700px) {
  .form-row--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.form-field {
  margin-bottom: 14px;
}

.form-row .form-field {
  margin-bottom: 0;
}

.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #4b5f73;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13.5px;
  color: #1f2d3d;
  background: #f7f9fb;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: #1c7da8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(28, 125, 168, 0.14);
}

select.form-input {
  appearance: auto;
}

/* ---------- SweetAlert2 debe quedar siempre por encima de nuestros modales ---------- */
/* SweetAlert2 v7 usa z-index: 1060 para su contenedor; nuestros .modal-overlay usan 1200,
   asi que sin esto cualquier swal() abierto con un modal propio activo queda oculto detras. */

.swal2-container {
  z-index: 1400 !important;
}

/* ---------- Modales propios ---------- */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 32, 0.55);
  z-index: 1200;
  padding: 16px;
  overflow-y: auto;
}

.modal-overlay.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media (min-height: 700px) {
  .modal-overlay.is-open {
    align-items: center;
  }
}

.modal-card {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 480px;
  margin: auto;
  box-shadow: 0 24px 60px rgba(8, 20, 30, 0.4);
  animation: loginCardIn 0.2s ease;
}

.modal-card--image {
  max-width: 640px;
  background: transparent;
  box-shadow: none;
}

.modal-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eef1f4;
}

.modal-card--image .modal-card-header {
  border-bottom: 0;
  justify-content: flex-end;
}

.modal-card-header h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #1f2d3d;
}

.modal-close {
  border: 0;
  background: #f2f5f8;
  color: #4b5f73;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
}

.modal-card--image .modal-close {
  background: #fff;
}

.modal-card-body {
  padding: 20px;
}

.modal-card-body--center {
  text-align: center;
}

.modal-field {
  margin-bottom: 14px;
  text-align: left;
}

.modal-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #4b5f73;
  margin-bottom: 6px;
}

.modal-select {
  width: 100%;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13.5px;
  background: #f7f9fb;
  font-family: inherit;
}

.modal-inline-input {
  display: flex;
  gap: 8px;
}

.modal-inline-input .modal-select {
  flex: 1;
}

.modal-card-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid #eef1f4;
}

.btn-primary,
.btn-secondary {
  border: 0;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #146c94, #21875b);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: #f2f5f8;
  color: #33485f;
}

.btn-secondary:hover {
  background: #e6ebf0;
}
