.skm-asm-board {
  --skm-green: #006b3f;
  --skm-dark: #062d1f;
  --skm-soft: #edf8f2;
  --skm-line: #cfe8dc;
  --skm-yellow: #f7bd18;
  --skm-red: #e11d2e;
  --skm-blue: #1d7ed8;
  color: var(--skm-dark);
  font-family: Montserrat, Arial, sans-serif;
  margin: 32px auto;
  max-width: 1180px;
  padding: 0 16px;
}

/* Reference ASM board design: matches the validated Informations vols mockup. */
.skm-asm-board {
  --skm-green: #00643c;
  --skm-green-deep: #004f2f;
  --skm-green-dark: #003d27;
  --skm-border: #d7e8df;
  --skm-row: #f6fbf8;
  --skm-muted: #587064;
  background: transparent;
  color: #052d1f;
  font-family: Montserrat, Arial, sans-serif;
  margin: 30px auto 42px;
  max-width: 1188px;
  padding: 0 12px;
}

.skm-asm-board .skm-asm-shell {
  background: var(--skm-green);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 46, 28, 0.18);
  overflow: hidden;
  padding: 8px;
}

.skm-asm-board .skm-asm-header {
  align-items: center;
  background: linear-gradient(135deg, #00633b 0%, #004e2f 100%);
  border: 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px 20px 15px;
}

.skm-asm-board .skm-asm-header-main {
  align-items: center;
  display: flex;
  gap: 16px;
}

.skm-asm-board .skm-asm-icon {
  align-items: center;
  background: #f7fff9;
  border-radius: 7px;
  color: var(--skm-green);
  display: inline-flex;
  font-size: 32px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.skm-asm-board .skm-asm-kicker {
  display: none;
}

.skm-asm-board .skm-asm-header h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 8px;
}

.skm-asm-board .skm-asm-header p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.skm-asm-board .skm-asm-header-side {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
  min-width: 0;
  padding: 0;
}

.skm-asm-board .skm-asm-header-side span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.skm-asm-board .skm-asm-header-side span::before {
  content: "⟳";
  font-size: 16px;
  margin-right: 8px;
}

.skm-asm-board .skm-asm-header-side strong {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-left: -8px;
}

.skm-asm-board .skm-asm-header-side button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  min-height: 34px;
  padding: 8px 16px;
}

.skm-asm-board .skm-asm-header-side button::before {
  content: "⟳";
  margin-right: 8px;
}

.skm-asm-board .skm-asm-table-wrap {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px 8px 0 0;
  overflow-x: auto;
  padding: 0;
}

.skm-asm-board .skm-asm-table-wrap table {
  border: 0;
  border-collapse: collapse;
  border-radius: 0;
  min-width: 1120px;
  table-layout: fixed;
  width: 100%;
}

.skm-asm-board .skm-asm-table-wrap th {
  background: var(--skm-green-deep);
  border: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 13px 10px;
  text-align: center;
  text-transform: uppercase;
}

.skm-asm-board .skm-asm-table-wrap th:first-child,
.skm-asm-board .skm-asm-table-wrap th:last-child {
  border-radius: 0;
}

.skm-asm-board .skm-asm-table-wrap td {
  background: #fff;
  border-bottom: 1px solid #e2ebe6;
  color: #041f17;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
}

.skm-asm-board .skm-asm-table-wrap tbody tr:hover td {
  background: #fbfefd;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(1),
.skm-asm-board .skm-asm-table-wrap td:nth-child(1) {
  width: 112px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(2),
.skm-asm-board .skm-asm-table-wrap td:nth-child(2) {
  width: 130px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(3),
.skm-asm-board .skm-asm-table-wrap td:nth-child(3) {
  width: 96px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(4),
.skm-asm-board .skm-asm-table-wrap td:nth-child(4) {
  width: 150px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(10),
.skm-asm-board .skm-asm-table-wrap td:nth-child(10) {
  width: 150px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(11),
.skm-asm-board .skm-asm-table-wrap td:nth-child(11) {
  width: 116px;
}

.skm-asm-board .skm-asm-flight {
  align-items: center;
  display: grid;
  gap: 1px 9px;
  grid-template-columns: 24px 1fr;
  justify-content: start;
  text-align: left;
}

.skm-asm-board .skm-asm-flight span {
  color: var(--skm-green);
  font-size: 21px;
  grid-row: 1 / span 2;
  line-height: 1;
}

.skm-asm-board .skm-asm-flight strong {
  color: var(--skm-green-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.skm-asm-board .skm-asm-flight small,
.skm-asm-board .skm-asm-table-wrap td small {
  color: #0a2d20;
  display: block;
  font-size: 10px;
  font-weight: 700;
  margin-top: 3px;
}

.skm-asm-board .skm-asm-table-wrap td:nth-child(2) {
  text-align: left;
}

.skm-asm-board .skm-asm-table-wrap td:nth-child(2) strong {
  color: #082820;
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 4px;
}

.skm-asm-board .skm-asm-type {
  align-items: center;
  background: transparent;
  border-radius: 0;
  color: #10241d;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  line-height: 1.25;
  padding: 0;
  white-space: normal;
}

.skm-asm-board .skm-asm-type::before {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 22px;
  font-size: 15px;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.skm-asm-board .skm-asm-type.is-time::before {
  border: 2px solid #ffc400;
  color: #ffc400;
  content: "◷";
}

.skm-asm-board .skm-asm-type.is-cancel::before {
  border: 2px solid #f01e2c;
  color: #f01e2c;
  content: "∅";
}

.skm-asm-board .skm-asm-type.is-report::before {
  border: 2px solid #1d7ed8;
  color: #1d7ed8;
  content: "□";
}

.skm-asm-board .skm-asm-type.is-info::before {
  border: 2px solid #20b15a;
  color: #20b15a;
  content: "✓";
}

.skm-asm-board .skm-asm-badge {
  border-radius: 5px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: center;
  min-width: 66px;
  padding: 8px 9px;
  white-space: nowrap;
}

.skm-asm-board .skm-asm-badge.is-yellow {
  background: #ffd31a;
  color: #2d2600;
}

.skm-asm-board .skm-asm-badge.is-red {
  background: #ef1d2e;
  color: #fff;
}

.skm-asm-board .skm-asm-badge.is-blue {
  background: #dcecff;
  color: #0a67c8;
}

.skm-asm-board .skm-asm-badge.is-green {
  background: #cdeed6;
  color: #105f34;
}

.skm-asm-board .skm-asm-cta {
  background: #fff;
  border: 1px solid #0b8a54;
  border-radius: 5px;
  color: #007246;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  min-width: 82px;
  padding: 9px 8px;
  text-align: center;
}

.skm-asm-board .skm-asm-cta:hover {
  background: #007246;
  color: #fff;
}

.skm-asm-board .skm-asm-empty {
  align-items: center;
  background: linear-gradient(135deg, #f9fffb 0%, #ffffff 54%, #fff7df 100%);
  color: #052d1f;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(190px, 290px) 1fr;
  min-height: 300px;
  padding: 42px clamp(24px, 5vw, 66px);
  text-align: left;
}

.skm-asm-board .skm-asm-empty-visual {
  align-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(233, 249, 241, 0.95));
  border: 1px solid rgba(0, 107, 63, 0.16);
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(0, 52, 31, 0.16);
  display: grid;
  justify-items: center;
  min-height: 190px;
  overflow: hidden;
  position: relative;
}

.skm-asm-board .skm-asm-empty-plane {
  align-items: center;
  background: var(--skm-green);
  border-radius: 26px;
  box-shadow: 0 18px 34px rgba(0, 70, 41, 0.26);
  color: #fff;
  display: inline-flex;
  font-size: 54px;
  height: 98px;
  justify-content: center;
  position: relative;
  width: 98px;
  z-index: 2;
  animation: skmAsmPlaneFloat 4.8s ease-in-out infinite;
}

.skm-asm-board .skm-asm-empty-pulse {
  border: 2px solid rgba(247, 189, 24, 0.42);
  border-radius: 30px;
  height: 138px;
  position: absolute;
  transform: rotate(8deg);
  width: 138px;
  animation: skmAsmPulse 3.8s ease-in-out infinite;
}

.skm-asm-board .skm-asm-empty-route {
  background: repeating-linear-gradient(90deg, rgba(0, 107, 63, 0.24) 0 14px, transparent 14px 24px);
  border-radius: 999px;
  bottom: 42px;
  height: 3px;
  left: 28px;
  position: absolute;
  right: 28px;
}

.skm-asm-board .skm-asm-empty-kicker {
  background: #e6f6ee;
  border-radius: 999px;
  color: var(--skm-green);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  padding: 7px 13px;
  text-transform: uppercase;
}

.skm-asm-board .skm-asm-empty-copy strong {
  color: #052d1f;
  display: block;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.04;
  max-width: 720px;
}

.skm-asm-board .skm-asm-empty-copy p {
  color: #486356;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  margin: 16px 0 0;
  max-width: 720px;
}

.skm-asm-board .skm-asm-empty-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.skm-asm-board .skm-asm-empty-checks span {
  align-items: center;
  background: #fff;
  border: 1px solid #d6eadf;
  border-radius: 999px;
  color: #073825;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  padding: 9px 13px;
}

.skm-asm-board .skm-asm-empty-checks span::before {
  background: #008a52;
  border-radius: 999px;
  color: #fff;
  content: "✓";
  display: inline-flex;
  font-size: 10px;
  height: 16px;
  justify-content: center;
  line-height: 16px;
  width: 16px;
}

@keyframes skmAsmPlaneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes skmAsmPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96) rotate(8deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.04) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .skm-asm-board .skm-asm-empty-plane,
  .skm-asm-board .skm-asm-empty-pulse {
    animation: none;
  }
}

.skm-asm-board .skm-asm-info {
  align-items: center;
  background: #edf8f2;
  border: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 24px 1fr auto;
  padding: 14px 18px;
}

.skm-asm-board .skm-asm-info > span {
  background: var(--skm-green);
  color: #fff;
  font-size: 14px;
  height: 18px;
  width: 18px;
}

.skm-asm-board .skm-asm-info p {
  color: #203a30;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.skm-asm-board .skm-asm-info a {
  align-items: center;
  color: var(--skm-green-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  text-decoration: none;
}

.skm-asm-board .skm-asm-info a::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
}

.skm-asm-board .skm-asm-notice {
  align-items: center;
  background: linear-gradient(135deg, #f5fffa 0%, #fdfefb 100%);
  border: 1px solid #cae5d8;
  border-radius: 5px;
  box-shadow: none;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 28px;
  margin: 14px 18px 10px;
  padding: 17px 18px;
}

.skm-asm-board .skm-asm-notice > div {
  align-items: center;
  display: flex;
  gap: 18px;
}

.skm-asm-board .skm-asm-notice > div > span {
  align-items: center;
  background: var(--skm-green);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 48px;
  font-size: 0;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.skm-asm-board .skm-asm-notice > div > span::before {
  content: "🔔";
  font-size: 24px;
}

.skm-asm-board .skm-asm-notice strong {
  color: #062d1f;
  display: block;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 7px;
}

.skm-asm-board .skm-asm-notice p {
  color: #1d382e;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.skm-asm-board .skm-asm-notice a {
  align-items: center;
  background: var(--skm-green-deep);
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(0, 62, 38, 0.25);
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-width: 190px;
  padding: 12px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.skm-asm-board .skm-asm-notice a::after {
  content: "→";
  font-size: 18px;
}

.skm-asm-board .skm-asm-notice button {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #073825;
  cursor: pointer;
  font-size: 26px;
  height: 28px;
  line-height: 1;
  padding: 0;
  width: 28px;
}

.skm-asm-board .skm-asm-cards {
  display: none;
}

@media (max-width: 780px) {
  .skm-asm-board {
    margin: 18px auto 32px;
    padding: 0 10px;
  }

  .skm-asm-board .skm-asm-shell {
    border-radius: 10px;
    padding: 7px;
  }

  .skm-asm-board .skm-asm-header {
    align-items: flex-start;
    border-radius: 4px 4px 0 0;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    padding: 18px;
  }

  .skm-asm-board .skm-asm-header-main {
    align-items: flex-start;
  }

  .skm-asm-board .skm-asm-icon {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
  }

  .skm-asm-board .skm-asm-header h2 {
    font-size: 23px;
  }

  .skm-asm-board .skm-asm-header-side {
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
  }

  .skm-asm-board .skm-asm-header-side button {
    flex: 1 1 100%;
  }

  .skm-asm-board .skm-asm-empty {
    gap: 20px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 16px 28px;
    text-align: center;
  }

  .skm-asm-board .skm-asm-empty-visual {
    min-height: 150px;
  }

  .skm-asm-board .skm-asm-empty-plane {
    border-radius: 22px;
    font-size: 42px;
    height: 76px;
    width: 76px;
  }

  .skm-asm-board .skm-asm-empty-pulse {
    height: 108px;
    width: 108px;
  }

  .skm-asm-board .skm-asm-empty-copy strong {
    font-size: 26px;
  }

  .skm-asm-board .skm-asm-empty-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .skm-asm-board .skm-asm-empty-checks {
    justify-content: center;
  }

  .skm-asm-board .skm-asm-table-wrap {
    display: none;
  }

  .skm-asm-board .skm-asm-cards {
    background: #fff;
    display: grid;
    gap: 12px;
    padding: 12px;
  }

  .skm-asm-board .skm-asm-card {
    background: #fff;
    border: 1px solid #d7e8df;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 48, 28, 0.08);
    padding: 16px;
  }

  .skm-asm-board .skm-asm-card .skm-asm-cta {
    background: var(--skm-green-deep);
    color: #fff;
    margin-top: 12px;
    width: 100%;
  }

  .skm-asm-board .skm-asm-info {
    grid-template-columns: 22px 1fr;
  }

  .skm-asm-board .skm-asm-info a {
    grid-column: 1 / -1;
  }

  .skm-asm-board .skm-asm-notice {
    grid-template-columns: 1fr 30px;
    margin: 12px;
  }

  .skm-asm-board .skm-asm-notice a {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
  }

  .skm-asm-board .skm-asm-notice button {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

/* CTA modal must sit above the theme chrome, not inside the table stacking context. */
[data-skm-asm-modal-root-global] {
  position: relative;
  z-index: 2147483000;
}

[data-skm-asm-modal-root-global] .skm-asm-modal-backdrop {
  align-items: flex-start;
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  left: 0 !important;
  overflow: auto;
  padding: clamp(18px, 4vh, 46px) 22px;
  position: fixed !important;
  right: 0 !important;
  top: 0 !important;
  z-index: 2147483000 !important;
}

[data-skm-asm-modal-root-global] .skm-asm-modal-panel {
  margin: auto;
  max-height: calc(100dvh - 36px);
  position: relative;
  z-index: 2147483001;
}

body.skm-asm-modal-open {
  overflow: hidden;
}

@media (max-width: 780px) {
  [data-skm-asm-modal-root-global] .skm-asm-modal-backdrop {
    align-items: stretch;
    padding: 10px;
  }

  [data-skm-asm-modal-root-global] .skm-asm-modal-panel {
    margin: 0;
    max-height: calc(100dvh - 20px);
    width: 100%;
  }
}

/* Final page-fit correction: keep this block last. */
.skm-asm-board {
  margin: 24px 0 42px 50%;
  max-width: none;
  padding: 0;
  transform: translateX(-50%);
  width: min(calc(100vw - 28px), 1540px);
}

.skm-asm-board .skm-asm-shell {
  display: flex;
  flex-direction: column;
  min-height: clamp(430px, 58vh, 680px);
  padding: 10px;
}

.skm-asm-board .skm-asm-header {
  min-height: 96px;
  padding: 18px 24px;
}

.skm-asm-board .skm-asm-header h2 {
  font-size: 28px;
}

.skm-asm-board .skm-asm-header p {
  font-size: 14px;
}

.skm-asm-board .skm-asm-table-wrap {
  flex: 1 1 auto;
  min-height: 260px;
}

.skm-asm-board .skm-asm-table-wrap table {
  min-width: 1320px;
}

.skm-asm-board .skm-asm-table-wrap th {
  font-size: 11px;
  padding: 16px 12px;
}

.skm-asm-board .skm-asm-table-wrap td {
  font-size: 13px;
  padding: 18px 12px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(1),
.skm-asm-board .skm-asm-table-wrap td:nth-child(1) {
  width: 120px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(2),
.skm-asm-board .skm-asm-table-wrap td:nth-child(2) {
  width: 142px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(4),
.skm-asm-board .skm-asm-table-wrap td:nth-child(4) {
  width: 160px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(10),
.skm-asm-board .skm-asm-table-wrap td:nth-child(10) {
  width: 190px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(11),
.skm-asm-board .skm-asm-table-wrap td:nth-child(11) {
  width: 128px;
}

.skm-asm-board .skm-asm-info {
  grid-template-columns: 24px 1fr;
  padding: 18px 22px;
}

.skm-asm-board .skm-asm-info a {
  display: none;
}

.skm-asm-global-notice {
  align-items: center;
  background: linear-gradient(135deg, #f5fffa 0%, #ffffff 100%);
  border: 1px solid #cde7da;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 24px rgba(0, 54, 32, 0.12);
  color: #062d1f;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 32px;
  margin: 0 auto 18px;
  max-width: 1540px;
  padding: 14px 22px;
  width: min(calc(100vw - 28px), 1540px);
  z-index: 20;
}

.skm-asm-global-notice > div {
  align-items: center;
  display: flex;
  gap: 16px;
}

.skm-asm-global-notice > div > span {
  align-items: center;
  background: #007246;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 23px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.skm-asm-global-notice strong {
  color: #052d1f;
  display: block;
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 4px;
}

.skm-asm-global-notice p {
  color: #1d382e;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.skm-asm-global-notice a {
  align-items: center;
  background: #005331;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(0, 62, 38, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 42px;
  min-width: 190px;
  padding: 11px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.skm-asm-global-notice a::after {
  content: "->";
}

.skm-asm-global-notice button {
  background: transparent;
  border: 0;
  color: #073825;
  cursor: pointer;
  font-size: 24px;
  height: 32px;
  line-height: 1;
  padding: 0;
  width: 32px;
}

@media (max-width: 780px) {
  .skm-asm-board {
    margin: 18px auto 32px;
    padding: 0 10px;
    transform: none;
    width: 100%;
  }

  .skm-asm-board .skm-asm-shell {
    min-height: 0;
  }

  .skm-asm-board .skm-asm-header {
    min-height: 0;
  }

  .skm-asm-global-notice {
    border-radius: 0 0 12px 12px;
    grid-template-columns: 1fr 30px;
    margin-bottom: 14px;
    padding: 14px;
    width: calc(100vw - 18px);
  }

  .skm-asm-global-notice a {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
  }

  .skm-asm-global-notice button {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

/* Layout correction: full page ASM board and global passenger alert. */
.skm-asm-board {
  margin: 24px 0 42px 50%;
  max-width: none;
  padding: 0;
  transform: translateX(-50%);
  width: min(calc(100vw - 28px), 1540px);
}

.skm-asm-board .skm-asm-shell {
  display: flex;
  flex-direction: column;
  min-height: clamp(430px, 58vh, 680px);
  padding: 10px;
}

.skm-asm-board .skm-asm-header {
  min-height: 96px;
  padding: 18px 24px;
}

.skm-asm-board .skm-asm-header h2 {
  font-size: 28px;
}

.skm-asm-board .skm-asm-header p {
  font-size: 14px;
}

.skm-asm-board .skm-asm-table-wrap {
  flex: 1 1 auto;
  min-height: 260px;
}

.skm-asm-board .skm-asm-table-wrap table {
  min-width: 1320px;
}

.skm-asm-board .skm-asm-table-wrap th {
  font-size: 11px;
  padding: 16px 12px;
}

.skm-asm-board .skm-asm-table-wrap td {
  font-size: 13px;
  padding: 18px 12px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(1),
.skm-asm-board .skm-asm-table-wrap td:nth-child(1) {
  width: 120px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(2),
.skm-asm-board .skm-asm-table-wrap td:nth-child(2) {
  width: 142px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(4),
.skm-asm-board .skm-asm-table-wrap td:nth-child(4) {
  width: 160px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(10),
.skm-asm-board .skm-asm-table-wrap td:nth-child(10) {
  width: 190px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(11),
.skm-asm-board .skm-asm-table-wrap td:nth-child(11) {
  width: 128px;
}

.skm-asm-board .skm-asm-info {
  grid-template-columns: 24px 1fr;
  padding: 18px 22px;
}

.skm-asm-board .skm-asm-info a {
  display: none;
}

.skm-asm-global-notice {
  align-items: center;
  background: linear-gradient(135deg, #f5fffa 0%, #ffffff 100%);
  border: 1px solid #cde7da;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 24px rgba(0, 54, 32, 0.12);
  color: #062d1f;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 32px;
  margin: 0 auto 18px;
  max-width: 1540px;
  padding: 14px 22px;
  width: min(calc(100vw - 28px), 1540px);
  z-index: 20;
}

.skm-asm-global-notice > div {
  align-items: center;
  display: flex;
  gap: 16px;
}

.skm-asm-global-notice > div > span {
  align-items: center;
  background: #007246;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 23px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.skm-asm-global-notice strong {
  color: #052d1f;
  display: block;
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 4px;
}

.skm-asm-global-notice p {
  color: #1d382e;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.skm-asm-global-notice a {
  align-items: center;
  background: #005331;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(0, 62, 38, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 42px;
  min-width: 190px;
  padding: 11px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.skm-asm-global-notice a::after {
  content: "->";
}

.skm-asm-global-notice button {
  background: transparent;
  border: 0;
  color: #073825;
  cursor: pointer;
  font-size: 24px;
  height: 32px;
  line-height: 1;
  padding: 0;
  width: 32px;
}

@media (max-width: 780px) {
  .skm-asm-board {
    margin: 18px auto 32px;
    padding: 0 10px;
    transform: none;
    width: 100%;
  }

  .skm-asm-board .skm-asm-shell {
    min-height: 0;
  }

  .skm-asm-board .skm-asm-header {
    min-height: 0;
  }

  .skm-asm-global-notice {
    border-radius: 0 0 12px 12px;
    grid-template-columns: 1fr 30px;
    margin-bottom: 14px;
    padding: 14px;
    width: calc(100vw - 18px);
  }

  .skm-asm-global-notice a {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
  }

  .skm-asm-global-notice button {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

.skm-asm-board .skm-asm-shell {
  border: 1px solid #bfe4d3;
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(4, 61, 36, 0.12);
}

.skm-asm-board .skm-asm-header {
  background: #ffffff;
  border-bottom: 1px solid #d9eee5;
}

.skm-asm-board .skm-asm-header-main {
  min-width: 0;
}

.skm-asm-board .skm-asm-icon {
  background: #e9f7ef;
  color: #006b3f;
}

.skm-asm-board .skm-asm-header-side {
  background: #f7fbf8;
  border: 1px solid #d6eadf;
  border-radius: 18px;
  padding: 12px;
}

.skm-asm-board .skm-asm-table-wrap {
  background: #fbfefd;
}

.skm-asm-board .skm-asm-table-wrap table {
  border: 1px solid #d5eadf;
  border-radius: 18px;
  overflow: hidden;
}

.skm-asm-board .skm-asm-table-wrap th {
  background: #006b3f;
  letter-spacing: 0;
}

.skm-asm-board .skm-asm-table-wrap td {
  border-bottom: 1px solid #dcefe6;
  line-height: 1.35;
}

.skm-asm-board .skm-asm-table-wrap td:nth-child(10) {
  max-width: 260px;
}

.skm-asm-board .skm-asm-cta {
  background: #fff;
  border: 1px solid #007a48;
  color: #006b3f;
  min-width: 132px;
  text-align: center;
}

@media (max-width: 780px) {
  .skm-asm-board .skm-asm-card {
    border-radius: 20px;
  }

  .skm-asm-board .skm-asm-route {
    flex-wrap: wrap;
  }

  .skm-asm-board .skm-asm-route strong {
    font-size: clamp(24px, 8vw, 34px);
  }

  .skm-asm-board .skm-asm-card-cities {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  }

  .skm-asm-board .skm-asm-card .skm-asm-cta {
    min-height: 48px;
  }
}

.skm-asm-shell,
.skm-asm-notice,
.skm-asm-modal-panel {
  box-sizing: border-box;
}

.skm-asm-shell {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  border: 1px solid var(--skm-line);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 48, 28, 0.10);
  overflow: hidden;
}

.skm-asm-header {
  align-items: center;
  background: linear-gradient(135deg, #f7fbf8 0%, #ffffff 56%, #fdf7de 100%);
  border-bottom: 1px solid var(--skm-line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px 30px;
}

.skm-asm-header-main {
  align-items: center;
  display: flex;
  gap: 18px;
}

.skm-asm-icon {
  align-items: center;
  background: #e3f5eb;
  border-radius: 16px;
  color: var(--skm-green);
  display: inline-flex;
  font-size: 24px;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.skm-asm-kicker {
  color: var(--skm-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.skm-asm-header h2 {
  color: var(--skm-dark);
  font-size: 34px;
  line-height: 1.05;
  margin: 0;
}

.skm-asm-header p {
  color: #64766c;
  font-size: 15px;
  margin: 8px 0 0;
}

.skm-asm-header-side {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 180px;
}

.skm-asm-header-side span {
  color: #68766f;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.skm-asm-header-side strong {
  font-size: 16px;
}

.skm-asm-header-side button,
.skm-asm-cta,
.skm-asm-notice a {
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.skm-asm-header-side button {
  background: #fff;
  border: 1px solid var(--skm-line);
  color: var(--skm-green);
  padding: 9px 14px;
}

.skm-asm-header-side button:hover,
.skm-asm-cta:hover,
.skm-asm-notice a:hover {
  transform: translateY(-1px);
}

.skm-asm-table-wrap {
  padding: 24px;
  overflow-x: auto;
}

.skm-asm-table-wrap table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 1120px;
  width: 100%;
}

.skm-asm-table-wrap th {
  background: var(--skm-green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 15px 13px;
  text-align: left;
  text-transform: uppercase;
}

.skm-asm-table-wrap th:first-child {
  border-radius: 18px 0 0 18px;
}

.skm-asm-table-wrap th:last-child {
  border-radius: 0 18px 18px 0;
}

.skm-asm-table-wrap td {
  background: #fff;
  border-bottom: 1px solid #e3f1ea;
  color: var(--skm-dark);
  font-size: 14px;
  padding: 17px 13px;
  vertical-align: middle;
}

.skm-asm-table-wrap tbody tr:hover td {
  background: #f8fcfa;
}

.skm-asm-flight {
  align-items: flex-start;
  display: grid;
  gap: 1px 8px;
  grid-template-columns: 24px 1fr;
}

.skm-asm-flight span {
  color: var(--skm-green);
  font-size: 18px;
  grid-row: span 2;
}

.skm-asm-flight strong {
  font-size: 16px;
}

.skm-asm-flight small,
.skm-asm-table-wrap td small {
  color: #6d7c74;
  display: block;
  font-size: 12px;
  margin-top: 3px;
}

.skm-asm-type,
.skm-asm-badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  white-space: nowrap;
}

.skm-asm-type.is-time,
.skm-asm-badge.is-yellow {
  background: #fff3ce;
  color: #8a6200;
}

.skm-asm-type.is-cancel,
.skm-asm-badge.is-red {
  background: #ffe2e5;
  color: #af1322;
}

.skm-asm-type.is-report,
.skm-asm-badge.is-blue {
  background: #e2f0ff;
  color: #10558f;
}

.skm-asm-type.is-info,
.skm-asm-badge.is-green {
  background: #e3f5eb;
  color: var(--skm-green);
}

.skm-asm-cta {
  background: #fff;
  border: 1px solid var(--skm-green);
  color: var(--skm-green);
  padding: 10px 14px;
}

.skm-asm-cta:hover {
  background: var(--skm-green);
  box-shadow: 0 12px 28px rgba(0, 107, 63, 0.18);
  color: #fff;
}

.skm-asm-info {
  align-items: center;
  background: #f6fbf8;
  border-top: 1px solid var(--skm-line);
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  padding: 18px 24px;
}

.skm-asm-info > span {
  align-items: center;
  background: var(--skm-green);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.skm-asm-info p {
  color: #50635a;
  font-size: 13px;
  margin: 0;
}

.skm-asm-info a {
  color: var(--skm-green);
  font-weight: 900;
  text-decoration: none;
}

.skm-asm-notice {
  align-items: center;
  background: #fffaf0;
  border: 1px solid #f2d48a;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(119, 83, 0, 0.12);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 0 18px;
  padding: 16px 18px;
}

.skm-asm-notice > div {
  align-items: center;
  display: flex;
  gap: 12px;
}

.skm-asm-notice strong {
  display: block;
  font-size: 16px;
}

.skm-asm-notice p {
  color: #66766f;
  margin: 3px 0 0;
}

.skm-asm-notice a {
  background: var(--skm-green);
  color: #fff;
  padding: 11px 15px;
  text-decoration: none;
  white-space: nowrap;
}

.skm-asm-notice button {
  align-items: center;
  background: #fff;
  border: 1px solid #ead69b;
  border-radius: 50%;
  color: var(--skm-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 22px;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.skm-asm-empty {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 48px 24px;
  text-align: center;
}

.skm-asm-empty strong {
  font-size: 22px;
}

.skm-asm-empty span {
  color: #68786f;
}

.skm-asm-cards {
  display: none;
}

.skm-asm-modal-backdrop {
  align-items: center;
  background: rgba(2, 31, 20, 0.72);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 28px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999999;
}

.skm-asm-modal-panel {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
  max-height: 92vh;
  max-width: 980px;
  overflow: auto;
  width: min(980px, 100%);
}

.skm-asm-modal-head {
  align-items: center;
  border-bottom: 1px solid #e1f0e8;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 18px 22px;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
}

.skm-asm-modal-head p {
  color: var(--skm-green);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.skm-asm-modal-head h3 {
  font-size: 22px;
  margin: 0;
}

.skm-asm-modal-head button {
  align-items: center;
  background: #edf7f1;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  font-size: 22px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.skm-asm-modal-context {
  background: #f6fbf8;
  border: 1px solid #d7ebe1;
  border-radius: 16px;
  color: #50635a;
  font-size: 13px;
  margin: 18px 22px 0;
  padding: 13px 15px;
}

.skm-asm-modal-body {
  padding: 0 22px 22px;
}

body.skm-asm-modal-open {
  overflow: hidden;
}

@media (max-width: 780px) {
  .skm-asm-board {
    margin: 20px auto 78px;
    padding: 0 12px;
  }

  .skm-asm-shell {
    border-radius: 22px;
  }

  .skm-asm-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 18px;
  }

  .skm-asm-header-main {
    align-items: flex-start;
  }

  .skm-asm-icon {
    border-radius: 14px;
    height: 44px;
    width: 44px;
  }

  .skm-asm-header h2 {
    font-size: 28px;
  }

  .skm-asm-header p {
    font-size: 14px;
  }

  .skm-asm-header-side {
    align-items: stretch;
    width: 100%;
  }

  .skm-asm-header-side button {
    width: 100%;
  }

  .skm-asm-table-wrap {
    display: none;
  }

  .skm-asm-cards {
    display: grid;
    gap: 14px;
    padding: 16px;
  }

  .skm-asm-card {
    background: #fff;
    border: 1px solid var(--skm-line);
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(0, 53, 31, 0.08);
    padding: 17px;
  }

  .skm-asm-card-top {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
  }

  .skm-asm-card-top span {
    color: #6f7e76;
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .skm-asm-card-top strong {
    color: var(--skm-green);
    display: block;
    font-size: 22px;
    margin-top: 2px;
  }

  .skm-asm-route {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-top: 18px;
  }

  .skm-asm-route strong {
    font-size: 34px;
    line-height: 1;
  }

  .skm-asm-route span {
    color: var(--skm-yellow);
    font-size: 24px;
    font-weight: 900;
  }

  .skm-asm-card-cities {
    color: #6d7c74;
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    margin: 5px 0 14px;
  }

  .skm-asm-card dl {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
  }

  .skm-asm-card dl div {
    background: #f7fbf8;
    border: 1px solid #e0f0e7;
    border-radius: 14px;
    padding: 10px;
  }

  .skm-asm-card dt {
    color: #6d7c74;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .skm-asm-card dd {
    color: var(--skm-dark);
    font-size: 14px;
    font-weight: 900;
    margin: 5px 0 0;
  }

  .skm-asm-cause {
    background: #fffaf0;
    border: 1px solid #f4dfad;
    border-radius: 15px;
    margin: 12px 0;
    padding: 11px 12px;
  }

  .skm-asm-cause strong {
    color: #896700;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
  }

  .skm-asm-cause span {
    color: #3f4d46;
    display: block;
    font-size: 13px;
    margin-top: 4px;
  }

  .skm-asm-card .skm-asm-cta {
    background: var(--skm-green);
    color: #fff;
    width: 100%;
  }

  .skm-asm-info {
    grid-template-columns: auto 1fr;
    padding: 16px;
  }

  .skm-asm-info a {
    grid-column: 2;
  }

  .skm-asm-notice {
    align-items: stretch;
    flex-direction: column;
    padding: 15px;
  }

  .skm-asm-notice a {
    text-align: center;
  }

  .skm-asm-notice button {
    position: absolute;
    right: 20px;
    top: 10px;
  }

  .skm-asm-modal-backdrop {
    align-items: stretch;
    padding: 10px;
  }

  .skm-asm-modal-panel {
    border-radius: 22px;
    max-height: calc(100vh - 20px);
  }

  .skm-asm-modal-head {
    padding: 16px;
  }

  .skm-asm-modal-head h3 {
    font-size: 18px;
  }

  .skm-asm-modal-context,
  .skm-asm-modal-body {
    margin-left: 14px;
    margin-right: 14px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Final lock: validated Informations vols reference design. */
.skm-asm-board {
  --skm-green: #00643c;
  --skm-green-deep: #004f2f;
  --skm-green-dark: #003d27;
  background: transparent;
  color: #052d1f;
  font-family: Montserrat, Arial, sans-serif;
  margin: 30px auto 42px;
  max-width: 1188px;
  padding: 0 12px;
}

.skm-asm-board .skm-asm-shell {
  background: var(--skm-green);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 46, 28, 0.18);
  overflow: hidden;
  padding: 8px;
}

.skm-asm-board .skm-asm-header {
  align-items: center;
  background: linear-gradient(135deg, #00633b 0%, #004e2f 100%);
  border: 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px 20px 15px;
}

.skm-asm-board .skm-asm-header-main {
  align-items: center;
  display: flex;
  gap: 16px;
  min-width: 0;
}

.skm-asm-board .skm-asm-icon {
  align-items: center;
  background: #f7fff9;
  border-radius: 7px;
  color: var(--skm-green);
  display: inline-flex;
  font-size: 32px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.skm-asm-board .skm-asm-kicker {
  display: none;
}

.skm-asm-board .skm-asm-header h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 8px;
}

.skm-asm-board .skm-asm-header p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.skm-asm-board .skm-asm-header-side {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
  min-width: 0;
  padding: 0;
}

.skm-asm-board .skm-asm-header-side span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.skm-asm-board .skm-asm-header-side span::before {
  content: "⟳";
  font-size: 16px;
  margin-right: 8px;
}

.skm-asm-board .skm-asm-header-side strong {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-left: -8px;
}

.skm-asm-board .skm-asm-header-side button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  min-height: 34px;
  padding: 8px 16px;
}

.skm-asm-board .skm-asm-header-side button::before {
  content: "⟳";
  margin-right: 8px;
}

.skm-asm-board .skm-asm-table-wrap {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px 8px 0 0;
  overflow-x: auto;
  padding: 0;
}

.skm-asm-board .skm-asm-table-wrap table {
  border: 0;
  border-collapse: collapse;
  border-radius: 0;
  min-width: 1120px;
  table-layout: fixed;
  width: 100%;
}

.skm-asm-board .skm-asm-table-wrap th {
  background: var(--skm-green-deep);
  border: 0;
  border-radius: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 13px 10px;
  text-align: center;
  text-transform: uppercase;
}

.skm-asm-board .skm-asm-table-wrap th:first-child,
.skm-asm-board .skm-asm-table-wrap th:last-child {
  border-radius: 0;
}

.skm-asm-board .skm-asm-table-wrap td {
  background: #fff;
  border-bottom: 1px solid #e2ebe6;
  color: #041f17;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
}

.skm-asm-board .skm-asm-table-wrap tbody tr:hover td {
  background: #fbfefd;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(1),
.skm-asm-board .skm-asm-table-wrap td:nth-child(1) {
  width: 112px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(2),
.skm-asm-board .skm-asm-table-wrap td:nth-child(2) {
  width: 130px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(3),
.skm-asm-board .skm-asm-table-wrap td:nth-child(3) {
  width: 96px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(4),
.skm-asm-board .skm-asm-table-wrap td:nth-child(4) {
  width: 150px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(10),
.skm-asm-board .skm-asm-table-wrap td:nth-child(10) {
  width: 150px;
}

.skm-asm-board .skm-asm-table-wrap th:nth-child(11),
.skm-asm-board .skm-asm-table-wrap td:nth-child(11) {
  width: 116px;
}

.skm-asm-board .skm-asm-flight {
  align-items: center;
  display: grid;
  gap: 1px 9px;
  grid-template-columns: 24px 1fr;
  justify-content: start;
  text-align: left;
}

.skm-asm-board .skm-asm-flight span {
  color: var(--skm-green);
  font-size: 21px;
  grid-row: 1 / span 2;
  line-height: 1;
}

.skm-asm-board .skm-asm-flight strong {
  color: var(--skm-green-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.skm-asm-board .skm-asm-flight small,
.skm-asm-board .skm-asm-table-wrap td small {
  color: #0a2d20;
  display: block;
  font-size: 10px;
  font-weight: 700;
  margin-top: 3px;
}

.skm-asm-board .skm-asm-table-wrap td:nth-child(2) {
  text-align: left;
}

.skm-asm-board .skm-asm-table-wrap td:nth-child(2) strong {
  color: #082820;
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 4px;
}

.skm-asm-board .skm-asm-type {
  align-items: center;
  background: transparent;
  border-radius: 0;
  color: #10241d;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  line-height: 1.25;
  padding: 0;
  white-space: normal;
}

.skm-asm-board .skm-asm-type::before {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 22px;
  font-size: 15px;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.skm-asm-board .skm-asm-type.is-time::before {
  border: 2px solid #ffc400;
  color: #ffc400;
  content: "◷";
}

.skm-asm-board .skm-asm-type.is-cancel::before {
  border: 2px solid #f01e2c;
  color: #f01e2c;
  content: "∅";
}

.skm-asm-board .skm-asm-type.is-report::before {
  border: 2px solid #1d7ed8;
  color: #1d7ed8;
  content: "□";
}

.skm-asm-board .skm-asm-type.is-info::before {
  border: 2px solid #20b15a;
  color: #20b15a;
  content: "✓";
}

.skm-asm-board .skm-asm-badge {
  border-radius: 5px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: center;
  min-width: 66px;
  padding: 8px 9px;
  white-space: nowrap;
}

.skm-asm-board .skm-asm-badge.is-yellow {
  background: #ffd31a;
  color: #2d2600;
}

.skm-asm-board .skm-asm-badge.is-red {
  background: #ef1d2e;
  color: #fff;
}

.skm-asm-board .skm-asm-badge.is-blue {
  background: #dcecff;
  color: #0a67c8;
}

.skm-asm-board .skm-asm-badge.is-green {
  background: #cdeed6;
  color: #105f34;
}

.skm-asm-board .skm-asm-cta {
  background: #fff;
  border: 1px solid #0b8a54;
  border-radius: 5px;
  color: #007246;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  min-width: 82px;
  padding: 9px 8px;
  text-align: center;
}

.skm-asm-board .skm-asm-cta:hover {
  background: #007246;
  color: #fff;
}

.skm-asm-board .skm-asm-info {
  align-items: center;
  background: #edf8f2;
  border: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 24px 1fr auto;
  padding: 14px 18px;
}

.skm-asm-board .skm-asm-info > span {
  background: var(--skm-green);
  color: #fff;
  font-size: 14px;
  height: 18px;
  width: 18px;
}

.skm-asm-board .skm-asm-info p {
  color: #203a30;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.skm-asm-board .skm-asm-info a {
  align-items: center;
  color: var(--skm-green-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  text-decoration: none;
}

.skm-asm-board .skm-asm-info a::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
}

.skm-asm-board .skm-asm-notice {
  align-items: center;
  background: linear-gradient(135deg, #f5fffa 0%, #fdfefb 100%);
  border: 1px solid #cae5d8;
  border-radius: 5px;
  box-shadow: none;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 28px;
  margin: 14px 18px 10px;
  padding: 17px 18px;
}

.skm-asm-board .skm-asm-notice > div {
  align-items: center;
  display: flex;
  gap: 18px;
}

.skm-asm-board .skm-asm-notice > div > span {
  align-items: center;
  background: var(--skm-green);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 48px;
  font-size: 0;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.skm-asm-board .skm-asm-notice > div > span::before {
  content: "🔔";
  font-size: 24px;
}

.skm-asm-board .skm-asm-notice strong {
  color: #062d1f;
  display: block;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 7px;
}

.skm-asm-board .skm-asm-notice p {
  color: #1d382e;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.skm-asm-board .skm-asm-notice a {
  align-items: center;
  background: var(--skm-green-deep);
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(0, 62, 38, 0.25);
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-width: 190px;
  padding: 12px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.skm-asm-board .skm-asm-notice a::after {
  content: "→";
  font-size: 18px;
}

.skm-asm-board .skm-asm-notice button {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #073825;
  cursor: pointer;
  font-size: 26px;
  height: 28px;
  line-height: 1;
  padding: 0;
  width: 28px;
}

.skm-asm-board .skm-asm-cards {
  display: none;
}

@media (max-width: 780px) {
  .skm-asm-board {
    margin: 18px auto 32px;
    padding: 0 10px;
  }

  .skm-asm-board .skm-asm-shell {
    border-radius: 10px;
    padding: 7px;
  }

  .skm-asm-board .skm-asm-header {
    align-items: flex-start;
    border-radius: 4px 4px 0 0;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    padding: 18px;
  }

  .skm-asm-board .skm-asm-header-main {
    align-items: flex-start;
  }

  .skm-asm-board .skm-asm-icon {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
  }

  .skm-asm-board .skm-asm-header h2 {
    font-size: 23px;
  }

  .skm-asm-board .skm-asm-header-side {
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
  }

  .skm-asm-board .skm-asm-header-side button {
    flex: 1 1 100%;
  }

  .skm-asm-board .skm-asm-table-wrap {
    display: none;
  }

  .skm-asm-board .skm-asm-cards {
    background: #fff;
    display: grid;
    gap: 12px;
    padding: 12px;
  }

  .skm-asm-board .skm-asm-card {
    background: #fff;
    border: 1px solid #d7e8df;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 48, 28, 0.08);
    padding: 16px;
  }

  .skm-asm-board .skm-asm-card .skm-asm-cta {
    background: var(--skm-green-deep);
    color: #fff;
    margin-top: 12px;
    width: 100%;
  }

  .skm-asm-board .skm-asm-info {
    grid-template-columns: 22px 1fr;
  }

  .skm-asm-board .skm-asm-info a {
    grid-column: 1 / -1;
  }

  .skm-asm-board .skm-asm-notice {
    grid-template-columns: 1fr 30px;
    margin: 12px;
  }

  .skm-asm-board .skm-asm-notice a {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
  }

  .skm-asm-board .skm-asm-notice button {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}
