/* ======================================================
   APP NOMINA - REDISENO VISUAL PREMIUM
   Mantiene toda la funcionalidad existente
   ====================================================== */

:root {
  --bg-950: #08040a;
  --bg-900: #120712;
  --bg-850: #1a0c18;
  --surface-900: rgba(28, 12, 26, 0.9);
  --surface-850: rgba(36, 16, 31, 0.92);
  --surface-800: rgba(49, 22, 40, 0.95);
  --surface-760: rgba(65, 30, 51, 0.95);
  --surface-soft: rgba(255, 255, 255, 0.04);

  --accent-500: #b86a87;
  --accent-400: #d291aa;
  --accent-300: #e8c2b2;
  --accent-200: #f0d6c6;
  --accent-gold: #d9b277;
  --accent-gold-soft: #f0d6ad;
  --accent-line: rgba(240, 214, 173, 0.18);
  --accent-glow: rgba(217, 178, 119, 0.22);

  --text-100: #f8f1ec;
  --text-200: #eaded8;
  --text-300: #c7b8b2;
  --text-400: #9e8f8a;
  --text-500: #756864;

  --success: #63c08f;
  --success-soft: rgba(99, 192, 143, 0.12);
  --warning: #d4a85d;
  --warning-soft: rgba(212, 168, 93, 0.14);
  --danger: #ed7d74;
  --danger-soft: rgba(237, 125, 116, 0.14);

  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 22px 50px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.48);
  --shadow-xl: 0 44px 120px rgba(0, 0, 0, 0.58);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 999px;

  --transition-fast: 160ms ease;
  --transition-base: 240ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  padding: 34px 24px 42px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text-100);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(960px 600px at 8% -10%, rgba(184, 106, 135, 0.18) 0%, transparent 65%),
    radial-gradient(920px 620px at 100% 8%, rgba(217, 178, 119, 0.16) 0%, transparent 58%),
    radial-gradient(760px 520px at 50% 120%, rgba(120, 51, 82, 0.22) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-950) 0%, #110611 40%, var(--bg-900) 100%);
  scrollbar-gutter: stable;
  position: relative;
}

body.modal-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  inset: 0;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.015) 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

body::after {
  background-image:
    radial-gradient(circle at 25% 24%, rgba(255, 255, 255, 0.035) 0%, transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(217, 178, 119, 0.06) 0%, transparent 28%),
    radial-gradient(circle at 60% 78%, rgba(184, 106, 135, 0.05) 0%, transparent 24%);
}

.pantalla {
  display: none;
  width: 100%;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

#pantallaLista,
#pantallaLiquidacion,
#pantallaResultado {
  max-width: 780px;
}

.pantalla.activa {
  display: block;
  animation: screenReveal var(--transition-slow);
}

@keyframes screenReveal {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(50, 23, 42, 0.97) 0%, rgba(20, 8, 18, 0.97) 100%);
  border: 1px solid rgba(240, 214, 173, 0.11);
  border-radius: var(--radius-xl);
  padding: 38px 38px 34px;
  box-shadow:
    var(--shadow-xl),
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(12px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(240, 214, 173, 0.14) 0%, transparent 28%),
    radial-gradient(circle at bottom left, rgba(184, 106, 135, 0.14) 0%, transparent 32%);
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(240, 214, 173, 0.45) 50%, transparent 100%);
}

.auth-card {
  max-width: 520px;
  margin: 0 auto;
}

.panel-card {
  padding-top: 34px;
}

.liquidacion-card {
  padding-bottom: 30px;
}

.result-card {
  padding-bottom: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(240, 214, 173, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-gold-soft);
  font-size: 0.76rem;
  font-family: "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 28px;
  color: var(--text-100);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.header-title,
.lista-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
}

h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, rgba(184, 106, 135, 0.8) 100%);
  border-radius: var(--radius-full);
}

.lista-header h2::after {
  display: none;
}

.auth-meta {
  margin-top: 18px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--text-300);
  text-align: center;
}

.campo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}

label {
  color: var(--text-300);
  font-size: 0.78rem;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 56px;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 214, 173, 0.11);
  background:
    linear-gradient(180deg, rgba(11, 8, 14, 0.9) 0%, rgba(18, 12, 20, 0.92) 100%);
  color: var(--text-100);
  font: inherit;
  font-size: 1rem;
  transition:
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

input::placeholder {
  color: var(--text-500);
}

input:hover,
select:hover {
  border-color: rgba(240, 214, 173, 0.24);
}

input:focus,
select:focus {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(240, 214, 173, 0.48);
  box-shadow:
    0 0 0 4px rgba(217, 178, 119, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.24);
  background:
    linear-gradient(180deg, rgba(18, 10, 17, 0.98) 0%, rgba(25, 14, 24, 0.98) 100%);
}

input[readonly] {
  color: var(--text-400);
  background:
    linear-gradient(180deg, rgba(17, 16, 22, 0.9) 0%, rgba(20, 19, 27, 0.92) 100%);
  cursor: not-allowed;
}

input[type="date"] {
  cursor: pointer;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23d9b277' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 46px;
}

button {
  min-height: 54px;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 22px;
  color: #fff9f4;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  background:
    linear-gradient(135deg, #b56f88 0%, #834863 52%, #61344a 100%);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast);
  position: relative;
  overflow: hidden;
}

button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 48%);
  pointer-events: none;
}

button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.14) inset;
  filter: saturate(1.05);
}

button:active {
  transform: translateY(0);
}

.btn-sec {
  background:
    linear-gradient(135deg, rgba(74, 34, 52, 0.98) 0%, rgba(39, 19, 30, 0.98) 100%);
  border: 1px solid rgba(240, 214, 173, 0.12);
}

.btn-inline {
  min-width: 62px;
  padding-inline: 16px;
  background:
    linear-gradient(135deg, #d6b07a 0%, #b68457 100%);
  color: #1f130f;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.24) inset;
}

.botonPrincipal {
  background:
    linear-gradient(135deg, #c7a269 0%, #dbb987 52%, #f0d6ad 100%);
  color: #241712;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.24) inset;
}

.split-actions,
.page-actions,
.result-actions {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.split-actions > * ,
.page-actions > * ,
.result-actions > * {
  flex: 1;
}

.page-actions {
  margin-top: 20px;
}

.result-actions {
  margin-top: 18px;
}

.lista-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--accent-line);
}

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

.fila > * {
  flex: 1;
}

.fila-fecha {
  align-items: center;
}

.fila-factor {
  margin-bottom: 12px;
}

.factor-valor {
  max-width: 156px;
}

.buscar {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.buscar input {
  flex: 1;
}

#buscarResultado {
  min-height: 34px;
  margin-bottom: 14px;
}

#buscarResultado > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(217, 178, 119, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-200);
  animation: fadeIn 180ms ease;
}

#lista {
  max-height: 430px;
  overflow-y: auto;
  padding-right: 8px;
  margin-right: -8px;
}

#lista::-webkit-scrollbar {
  width: 7px;
}

#lista::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-full);
}

#lista::-webkit-scrollbar-thumb {
  background: rgba(240, 214, 173, 0.24);
  border-radius: var(--radius-full);
}

.item {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240, 214, 173, 0.1);
  background:
    linear-gradient(180deg, rgba(45, 21, 37, 0.92) 0%, rgba(22, 10, 18, 0.96) 100%);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-gold) 0%, rgba(184, 106, 135, 0.88) 100%);
}

.item::after {
  content: "";
  position: absolute;
  top: -16px;
  right: -8px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 214, 173, 0.15) 0%, transparent 70%);
}

.item:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 214, 173, 0.22);
  box-shadow: var(--shadow-md);
}

.nombre {
  margin-bottom: 6px;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-100);
}

.info {
  color: var(--text-300);
  font-size: 0.92rem;
}

.modalidad {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 7px 13px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(240, 214, 173, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-gold-soft);
  font-size: 0.72rem;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modalidadNueva {
  display: none;
  gap: 12px;
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(240, 214, 173, 0.22);
  background: rgba(255, 255, 255, 0.025);
  animation: fadeIn 200ms ease;
}

.select-modalidad {
  flex: 1;
}

#factoresWrapper {
  padding: 22px;
  margin-top: 8px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240, 214, 173, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
}

#factoresWrapper > label {
  display: block;
  margin-bottom: 12px;
}

.lista-factores {
  list-style: none;
  margin-top: 8px;
}

.lista-factores li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 214, 173, 0.08);
  background: rgba(0, 0, 0, 0.12);
}

.lista-factores li span {
  flex: 1;
  color: var(--text-200);
}

.lista-factores li .valor {
  color: var(--accent-gold-soft);
}

.lista-factores button {
  min-height: 40px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #b85f5c 0%, #8f4446 100%);
  font-size: 0.78rem;
}

.tabs-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.liquidacion-tabs {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 6px 2px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.liquidacion-tabs::-webkit-scrollbar {
  height: 6px;
}

.liquidacion-tabs::-webkit-scrollbar-thumb {
  background: rgba(240, 214, 173, 0.22);
  border-radius: var(--radius-full);
}

.liquidacion-tabs button,
.liquidacion-tabs button.tab-btn {
  flex: 0 0 auto !important;
  min-width: 48px !important;
  min-height: 48px !important;
  padding: 0 !important;
  display: inline-grid !important;
  place-items: center;
  border-radius: 14px !important;
  border: 1px solid rgba(240, 214, 173, 0.13);
  background:
    linear-gradient(180deg, rgba(62, 29, 48, 0.95) 0%, rgba(30, 14, 24, 0.98) 100%);
  color: var(--text-300);
  box-shadow: none;
}

.liquidacion-tabs button:hover {
  border-color: rgba(240, 214, 173, 0.26);
  color: var(--text-100);
}

.liquidacion-tabs button.activa {
  border-color: rgba(240, 214, 173, 0.42);
  color: #23160f;
  background:
    linear-gradient(135deg, #f0d6ad 0%, #d7b580 100%);
}

#eliminarTabWrapper {
  margin-top: 4px;
}

#btnEliminarAnoActual {
  width: 100%;
}

.info-base {
  margin: 22px 0 20px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 178, 119, 0.18);
  background:
    linear-gradient(135deg, rgba(240, 214, 173, 0.08) 0%, rgba(184, 106, 135, 0.08) 100%);
  color: var(--accent-gold-soft);
  text-align: center;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.small {
  color: var(--text-400);
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.5;
}

.section-note {
  margin-top: 14px;
}

.resultadoCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240, 214, 173, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
  box-shadow: var(--shadow-sm);
}

.resultadoCard:hover {
  border-color: rgba(240, 214, 173, 0.18);
}

.resultadoAno {
  justify-content: center;
  margin-top: 18px;
  background:
    linear-gradient(135deg, rgba(240, 214, 173, 0.12) 0%, rgba(184, 106, 135, 0.12) 100%);
  color: var(--accent-gold-soft);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.separadorAno {
  display: block;
  height: 28px;
}

.totalCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 26px;
  padding: 24px 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(240, 214, 173, 0.16);
  background:
    linear-gradient(135deg, rgba(240, 214, 173, 0.18) 0%, rgba(184, 106, 135, 0.22) 100%);
  color: var(--text-100);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  font-size: 1.22rem;
  font-weight: 700;
}

.mensaje {
  min-height: 22px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(237, 125, 116, 0.2);
  background: var(--danger-soft);
  color: var(--danger);
  font-size: 0.9rem;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
}

.mensaje.ok {
  border-color: rgba(99, 192, 143, 0.2);
  background: var(--success-soft);
  color: var(--success);
}

.result-mail-box {
  margin-top: 12px;
  padding-top: 8px;
}

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

.toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 280px;
  max-width: 380px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(240, 214, 173, 0.12);
  background:
    linear-gradient(180deg, rgba(44, 20, 36, 0.96) 0%, rgba(20, 9, 17, 0.98) 100%);
  color: var(--text-100);
  box-shadow: var(--shadow-lg);
}

.toast.success {
  border-color: rgba(99, 192, 143, 0.26);
}

.toast.error {
  border-color: rgba(237, 125, 116, 0.26);
}

.toast button {
  min-height: 38px;
  padding: 7px 12px;
  font-size: 0.8rem;
}

.confirm-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 4, 7, 0.82);
  backdrop-filter: blur(8px);
  z-index: 10000;
}

.confirm-card {
  width: 100%;
  max-width: 360px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(240, 214, 173, 0.14);
  background:
    linear-gradient(180deg, rgba(44, 20, 36, 0.98) 0%, rgba(19, 9, 17, 0.98) 100%);
  box-shadow: var(--shadow-xl);
  color: var(--text-100);
}

.confirm-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.confirm-card p {
  margin-bottom: 18px;
  color: var(--text-300);
}

.confirm-actions {
  display: flex;
  gap: 10px;
}

.confirm-actions > * {
  flex: 1;
}

button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(240, 214, 173, 0.5);
  outline-offset: 2px;
}

::selection {
  background: rgba(217, 178, 119, 0.3);
  color: #140d0c;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
  background: rgba(240, 214, 173, 0.18);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(240, 214, 173, 0.26);
}

@media (max-width: 760px) {
  body {
    padding: 18px 14px 30px;
  }

  .pantalla,
  #pantallaLista,
  #pantallaLiquidacion,
  #pantallaResultado {
    max-width: 100%;
  }

  .card {
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  h2 {
    font-size: 1.85rem;
  }

  .lista-header {
    flex-direction: column;
    align-items: stretch;
  }

  .lista-header button {
    width: 100%;
  }

  .fila,
  .split-actions,
  .page-actions,
  .result-actions,
  .confirm-actions,
  .buscar,
  .modalidadNueva {
    flex-direction: column;
  }

  .fila > *,
  .split-actions > *,
  .page-actions > *,
  .result-actions > *,
  .confirm-actions > *,
  .buscar > * ,
  .modalidadNueva > * {
    width: 100%;
  }

  .factor-valor {
    max-width: none;
  }

  .resultadoCard,
  .totalCard {
    flex-direction: column;
    align-items: flex-start;
  }

  .resultadoAno {
    align-items: center;
  }

  .toast-container {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .toast {
    min-width: 100%;
    max-width: none;
  }
}
