body[data-tool="schengen-90-180"] header.wrap{
  padding-bottom: 12px;
}

body[data-tool="schengen-90-180"] .tk-controls{
  margin-bottom: 18px;
}

body[data-tool="schengen-90-180"] .controls-row{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17,24,39,0.08);
}

body[data-tool="schengen-90-180"] .month-range{
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

body[data-tool="schengen-90-180"] .controls-actions{
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex: 1;
}

body[data-tool="schengen-90-180"] .controls-actions button{
  border-radius: 12px;
  border: 1px solid rgba(239, 68, 68, 0.45);
  background: rgba(239,68,68,0.08);
  color: rgba(239,68,68,0.95);
  padding: 8px 16px;
  cursor: pointer;
}

body[data-tool="schengen-90-180"] .controls-hint{
  margin-top: 10px;
  color: var(--muted);
}

body[data-tool="schengen-90-180"] .share-strip{
  margin: 18px 0 32px;
  padding: 16px 20px;
  border: 1px dashed rgba(37,99,235,0.35);
  border-radius: 18px;
  background: rgba(59,130,246,0.06);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  gap: 18px;
  align-items: flex-start;
}

body[data-tool="schengen-90-180"] .share-copy{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

body[data-tool="schengen-90-180"] .share-actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
  justify-self: flex-end;
  min-width: 0;
}

body[data-tool="schengen-90-180"] .share-actions.is-single{
  justify-content: flex-end;
}

body[data-tool="schengen-90-180"] .share-actions button{
  border-radius: 999px;
  border: 1px solid rgba(30,64,175,0.45);
  background: rgba(59,130,246,0.12);
  color: rgba(30,64,175,0.95);
  padding: 8px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
  flex-shrink: 0;
  pointer-events: auto;
}

body[data-tool="schengen-90-180"] .share-actions button:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}

body[data-tool="schengen-90-180"] .share-actions__secondary{
  border-color: rgba(17,24,39,0.18);
  background: rgba(17,24,39,0.04);
  color: var(--text);
}

body[data-tool="schengen-90-180"] .share-status{
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin: 0;
  min-height: 0;
  transition: opacity 160ms ease;
  opacity: 0;
}

body[data-tool="schengen-90-180"] .share-status--visible{
  opacity: 1;
  margin-top: 4px;
}

body[data-tool="schengen-90-180"] .share-status[data-tone="error"]{
  color: rgba(220,38,38,0.9);
}

body[data-tool="schengen-90-180"] .calendar-section{
  margin-top: 24px;
}

body[data-tool="schengen-90-180"] .calendar-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

body[data-tool="schengen-90-180"] .calendar-jump{
  border-radius: 999px;
  border: 1px solid rgba(37,99,235,0.4);
  background: rgba(59,130,246,0.1);
  color: rgba(37,99,235,0.95);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
}

body[data-tool="schengen-90-180"] .calendar-jump:hover{
  border-color: rgba(37,99,235,0.7);
  background: rgba(59,130,246,0.18);
}

body[data-tool="schengen-90-180"] .calendar-jump:focus-visible{
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

body[data-tool="schengen-90-180"] .calendar-shell{
  position: relative;
  margin-top: 16px;
  padding: 0 46px;
}

body[data-tool="schengen-90-180"] .calendar-mobile-indicator{
  display: none;
}

body[data-tool="schengen-90-180"] .calendar-helper{
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 14px;
  padding: 10px 14px;
  border-left: 4px solid rgba(59,130,246,0.45);
  background: rgba(59,130,246,0.08);
  border-radius: 0 12px 12px 0;
  color: var(--text);
}

body[data-tool="schengen-90-180"] .month-row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  transition: opacity 320ms ease;
  min-width: 0;
}

body[data-tool="schengen-90-180"] .month-row.month-row--slide-left{
  animation: month-slide-left 340ms ease;
}

body[data-tool="schengen-90-180"] .month-row.month-row--slide-right{
  animation: month-slide-right 340ms ease;
}

body[data-tool="schengen-90-180"] .month-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 86px;
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,0.35);
  background: linear-gradient(145deg, rgba(59,130,246,0.18), rgba(131,146,252,0.12));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease;
  touch-action: manipulation;
  color: rgba(30,64,175,0.95);
  font-weight: 600;
}

body[data-tool="schengen-90-180"] .month-nav--prev{
  left: 0;
}

body[data-tool="schengen-90-180"] .month-nav--next{
  right: 0;
}

body[data-tool="schengen-90-180"] .month-nav span{
  font-size: 22px;
  line-height: 1;
}

body[data-tool="schengen-90-180"] .month-nav:focus-visible{
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

body[data-tool="schengen-90-180"] .month-nav:hover{
  border-color: rgba(91,42,166,0.5);
  color: rgba(91,42,166,0.9);
}

body[data-tool="schengen-90-180"] .month-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  position: relative;
  min-width: 0;
}

body[data-tool="schengen-90-180"] .month-card.is-live-current{
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 12px 30px rgba(59,130,246,0.12);
}

body[data-tool="schengen-90-180"] .month-card.is-live-current h3{
  color: rgba(30,64,175,0.95);
}

body[data-tool="schengen-90-180"] .month-badge{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(59,130,246,0.15);
  color: rgba(30,64,175,0.95);
  padding: 4px 8px;
  border-radius: 999px;
}

body[data-tool="schengen-90-180"] .month-card header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

body[data-tool="schengen-90-180"] .month-card h3{
  margin: 0;
  font-size: 18px;
}

body[data-tool="schengen-90-180"] .dow-row{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 6px;
}

body[data-tool="schengen-90-180"] .dow-row span{
  text-align: center;
}

body[data-tool="schengen-90-180"] .days-grid{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  user-select: none;
  width: 100%;
}

body[data-tool="schengen-90-180"] .day-cell{
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 46px;
  padding: 4px 6px;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: border-color 140ms ease, background 140ms ease;
  touch-action: manipulation;
}

body[data-tool="schengen-90-180"] .day-cell:focus-visible{
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

body[data-tool="schengen-90-180"] .day-cell.is-today{
  border-color: rgba(96,165,250,0.7);
  box-shadow: 0 0 0 2px rgba(96,165,250,0.2);
}

body[data-tool="schengen-90-180"] .day-cell.is-muted{
  opacity: 0.35;
}

body[data-tool="schengen-90-180"] .day-cell.state-planned{
  background: rgba(249, 168, 38, 0.15);
  border-color: rgba(249, 168, 38, 0.55);
  color: #92400e;
}

body[data-tool="schengen-90-180"] .day-cell.state-actual{
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34,197,94,0.65);
  color: #065f46;
  box-shadow: inset 0 0 0 1px rgba(34,197,94,0.25);
}

body[data-tool="schengen-90-180"] .day-cell.is-reentry{
  position: relative;
  font-weight: 700;
  color: #0f172a;
  border-color: rgba(14,165,233,0.8);
  box-shadow: 0 0 0 2px rgba(14,165,233,0.25);
  background: rgba(14,165,233,0.12);
}

body[data-tool="schengen-90-180"] .day-cell.is-reentry::before{
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 2px solid rgba(14,165,233,0.65);
  box-shadow: 0 0 0 6px rgba(14,165,233,0.12);
  pointer-events: none;
  z-index: 0;
}

body[data-tool="schengen-90-180"] .day-cell.is-reentry::after{
  content: "★";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: #fff8dc;
  text-shadow: 0 1px 2px rgba(8,47,73,0.35);
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(8,47,73,0.35);
  z-index: 1;
}

body[data-tool="schengen-90-180"] .day-cell.is-reentry-plan{
  border-color: rgba(251,191,36,0.85);
  background: linear-gradient(145deg, rgba(253,230,138,0.25), rgba(251,146,60,0.18));
  box-shadow: 0 0 0 2px rgba(251,191,36,0.28);
}

body[data-tool="schengen-90-180"] .day-cell.is-reentry-plan::before{
  border-color: rgba(251,191,36,0.85);
  box-shadow: 0 0 0 6px rgba(251,191,36,0.16);
}

body[data-tool="schengen-90-180"] .day-cell.is-reentry-plan::after{
  background: linear-gradient(135deg, #d97706, #facc15);
}

body[data-tool="schengen-90-180"] .day-cell.is-reentry-actual{
  background: linear-gradient(145deg, rgba(14,165,233,0.18), rgba(125,211,252,0.22));
}

body[data-tool="schengen-90-180"] .day-cell.is-reentry-actual::before{
  border-color: rgba(14,165,233,0.75);
}

body[data-tool="schengen-90-180"] .day-cell.is-planned-illegal::before,
body[data-tool="schengen-90-180"] .day-cell.is-planned-illegal::after{
  content: "";
  position: absolute;
  width: 155%;
  height: 3px;
  background: rgba(239,68,68,0.92);
  top: 50%;
  left: -27%;
  transform-origin: center;
  border-radius: 999px;
  pointer-events: none;
  box-shadow: 0 0 2px rgba(255,255,255,0.7);
}

body[data-tool="schengen-90-180"] .day-cell.is-planned-illegal::before{
  transform: rotate(45deg);
}

body[data-tool="schengen-90-180"] .day-cell.is-planned-illegal::after{
  transform: rotate(-45deg);
}

body[data-tool="schengen-90-180"] .summary-grid{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

body[data-tool="schengen-90-180"] .summary-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: rgba(249,250,251,0.92);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
}

body[data-tool="schengen-90-180"] .summary-card--usage .summary-value{
  font-variant-numeric: tabular-nums;
}

body[data-tool="schengen-90-180"] .summary-card.projected-card{
  border-width: 2px;
  transition: border-color 200ms ease, background 200ms ease;
}

body[data-tool="schengen-90-180"] .summary-card.projected-card.status-safe{
  border-color: rgba(34,197,94,0.6);
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(16,185,129,0.08));
}

body[data-tool="schengen-90-180"] .summary-card.projected-card.status-near,
body[data-tool="schengen-90-180"] .summary-card.projected-card.status-limit{
  border-color: rgba(251,191,36,0.7);
  background: linear-gradient(135deg, rgba(251,191,36,0.16), rgba(248,113,113,0.10));
}

body[data-tool="schengen-90-180"] .summary-card.projected-card.status-over{
  border-color: rgba(239,68,68,0.75);
  background: linear-gradient(135deg, rgba(239,68,68,0.18), rgba(248,113,113,0.16));
}

body[data-tool="schengen-90-180"] .plan-headroom-card.status-over{
  border-color: rgba(239,68,68,0.65);
  background: linear-gradient(135deg, rgba(248,113,113,0.14), rgba(239,68,68,0.09));
}

body[data-tool="schengen-90-180"] .plan-headroom-card.status-near,
body[data-tool="schengen-90-180"] .plan-headroom-card.status-limit{
  border-color: rgba(251,191,36,0.65);
  background: linear-gradient(135deg, rgba(251,191,36,0.14), rgba(253,230,138,0.12));
}

body[data-tool="schengen-90-180"] .plan-headroom-card.status-safe{
  border-color: rgba(34,197,94,0.35);
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(16,185,129,0.04));
}

body[data-tool="schengen-90-180"] .summary-card.reentry-card{
  border-color: rgba(14,165,233,0.45);
  background: rgba(14,165,233,0.06);
  transition: border-color 200ms ease, background 200ms ease;
}

body[data-tool="schengen-90-180"] .summary-card.reentry-card.is-active{
  border-color: rgba(14,165,233,0.8);
  background: linear-gradient(135deg, rgba(14,165,233,0.16), rgba(125,211,252,0.12));
}

body[data-tool="schengen-90-180"] .summary-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 4px;
}

body[data-tool="schengen-90-180"] .summary-value{
  font-size: clamp(26px, 4vw, 36px);
  margin: 0;
  font-weight: 700;
}

body[data-tool="schengen-90-180"] .summary-note{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

body[data-tool="schengen-90-180"] .status-strip{
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(95deg, rgba(96,165,250,0.10), rgba(94,234,212,0.10));
  border: 1px solid rgba(96,165,250,0.25);
  display: flex;
  align-items: center;
}

body[data-tool="schengen-90-180"] .status-line{
  margin: 0;
  font-weight: 600;
  line-height: 1.35;
}

body[data-tool="schengen-90-180"] .status-strip.status-safe{
  background: linear-gradient(95deg, rgba(16,185,129,0.12), rgba(59,130,246,0.10));
  border-color: rgba(16,185,129,0.35);
}

body[data-tool="schengen-90-180"] .status-strip.status-near{
  background: linear-gradient(95deg, rgba(251,191,36,0.16), rgba(248,113,113,0.10));
  border-color: rgba(251,191,36,0.55);
}

body[data-tool="schengen-90-180"] .status-strip.status-limit{
  background: linear-gradient(95deg, rgba(251,191,36,0.25), rgba(248,113,113,0.18));
  border-color: rgba(251,146,60,0.65);
}

body[data-tool="schengen-90-180"] .status-strip.status-over{
  background: linear-gradient(95deg, rgba(239,68,68,0.18), rgba(248,113,113,0.20));
  border-color: rgba(239,68,68,0.55);
}

body[data-tool="schengen-90-180"] .plan-warning{
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(239,68,68,0.55);
  background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(249,115,22,0.08));
  box-shadow: 0 14px 35px rgba(249,115,22,0.12);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

body[data-tool="schengen-90-180"] .plan-warning[hidden]{
  display: none !important;
}

body[data-tool="schengen-90-180"] .plan-warning.is-visible{
  animation: plan-warning-pop 220ms ease;
}

body[data-tool="schengen-90-180"] .plan-warning__icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(239,68,68,0.95);
  color: #fffcee;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(239,68,68,0.35);
}

body[data-tool="schengen-90-180"] .plan-warning__body{
  flex: 1;
  color: #7f1d1d;
}

body[data-tool="schengen-90-180"] .plan-warning__title{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #7f1d1d;
}

body[data-tool="schengen-90-180"] .plan-warning__body p{
  margin: 0 0 6px;
  line-height: 1.4;
}

body[data-tool="schengen-90-180"] .plan-warning__body p:last-child{
  margin-bottom: 0;
}

body[data-tool="schengen-90-180"] .plan-warning__dismiss{
  border-radius: 999px;
  border: 1px solid rgba(239,68,68,0.4);
  background: rgba(255,255,255,0.9);
  color: #991b1b;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease;
  flex-shrink: 0;
}

body[data-tool="schengen-90-180"] .plan-warning__dismiss:hover{
  background: rgba(239,68,68,0.12);
}

body[data-tool="schengen-90-180"] .plan-warning__dismiss:focus-visible{
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

body[data-tool="schengen-90-180"] .coming-soon-link{
  color: var(--muted);
  font-style: italic;
}

body[data-tool="schengen-90-180"] .info-block{
  margin-top: 28px;
  padding: 0 var(--wrap-pad);
}

body[data-tool="schengen-90-180"] .info-block h2{
  margin-top: 12px;
}

body[data-tool="schengen-90-180"] .info-block ul{
  padding-left: 20px;
}

body[data-tool="schengen-90-180"] .guidance-callout{
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(239,68,68,0.55);
  background: rgba(239,68,68,0.08);
  color: #7f1d1d;
  font-weight: 500;
}

body[data-tool="schengen-90-180"] .deep-dive-block{
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 18px;
  padding: 18px;
  background: rgba(248,250,252,0.9);
}

body[data-tool="schengen-90-180"] .deep-dive-block .hint{
  margin: 8px 0 18px;
}

body[data-tool="schengen-90-180"] .next-links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body[data-tool="schengen-90-180"] .next-link{
  flex: 1 1 220px;
  border: 1px solid rgba(15,23,42,0.2);
  border-radius: 999px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

body[data-tool="schengen-90-180"] .next-link:hover{
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 8px 20px rgba(15,23,42,0.08);
}

body[data-tool="schengen-90-180"] .next-link__label{
  font-weight: 600;
}

body[data-tool="schengen-90-180"] .next-link__meta{
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 1024px){
  body[data-tool="schengen-90-180"] .calendar-shell{
    padding: 0 18px;
  }

  body[data-tool="schengen-90-180"] .controls-row{
    gap: 12px;
  }

  body[data-tool="schengen-90-180"] .summary-grid{
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 720px){
  body[data-tool="schengen-90-180"] .calendar-shell{
    padding: 0 32px;
  }
}

@media (max-width: 640px){
  body[data-tool="schengen-90-180"] .share-strip{
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
  }

  body[data-tool="schengen-90-180"] .share-actions{
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
  }

  body[data-tool="schengen-90-180"] .share-actions.is-single{
    justify-content: center;
  }

  body[data-tool="schengen-90-180"] .share-actions button{
    flex: 1 1 100%;
    width: 100%;
    text-align: center;
  }

  body[data-tool="schengen-90-180"] .calendar-head{
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  body[data-tool="schengen-90-180"] .calendar-jump{
    width: 100%;
    justify-content: center;
  }

  body[data-tool="schengen-90-180"] .calendar-shell{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "month month"
      "indicator indicator"
      "prev next";
    row-gap: 12px;
    column-gap: 12px;
    padding: 0;
    overflow-x: hidden;
  }

  body[data-tool="schengen-90-180"] .month-nav{
    position: static;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    border-width: 2px;
    font-size: 26px;
    box-shadow: 0 18px 32px rgba(15,23,42,0.25);
    background: linear-gradient(145deg, rgba(59,130,246,0.95), rgba(37,99,235,0.88));
    color: #f8fafc;
  }

  body[data-tool="schengen-90-180"] .month-nav--prev{
    grid-area: prev;
    justify-self: flex-start;
  }

  body[data-tool="schengen-90-180"] .month-nav--next{
    grid-area: next;
    justify-self: flex-end;
  }

  body[data-tool="schengen-90-180"] .month-row{
    grid-area: month;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  body[data-tool="schengen-90-180"] .month-nav span{
    font-size: 30px;
  }

  body[data-tool="schengen-90-180"] .calendar-mobile-indicator{
    display: flex;
    grid-area: indicator;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    font-weight: 600;
    color: var(--text);
  }

  body[data-tool="schengen-90-180"] .calendar-helper{
    font-size: 13px;
    padding: 10px;
  }

  body[data-tool="schengen-90-180"] .month-card{
    padding: 10px;
    width: 100%;
  }

  body[data-tool="schengen-90-180"] .day-cell{
    min-height: 58px;
    font-size: 16px;
  }

  body[data-tool="schengen-90-180"] .day-cell.is-reentry::after{
    width: 18px;
    height: 18px;
    font-size: 11px;
    top: 5px;
    right: 5px;
  }

  body[data-tool="schengen-90-180"] .day-cell.is-planned-illegal::before,
  body[data-tool="schengen-90-180"] .day-cell.is-planned-illegal::after{
    width: 135%;
    left: -18%;
  }

  body[data-tool="schengen-90-180"] .summary-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-tool="schengen-90-180"] .summary-card{
    min-height: auto;
    padding: 16px;
  }

  body[data-tool="schengen-90-180"] .plan-warning{
    flex-direction: column;
    align-items: stretch;
  }

  body[data-tool="schengen-90-180"] .plan-warning__dismiss{
    width: 100%;
    text-align: center;
  }
}

@keyframes month-slide-left{
  from{
    opacity: 0;
    transform: translateX(2%);
  }
  to{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes month-slide-right{
  from{
    opacity: 0;
    transform: translateX(-2%);
  }
  to{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes plan-warning-pop{
  from{
    opacity: 0;
    transform: translateY(-8px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
