:root {
  --vt-primary: #3C3C3C;
  --vt-secondary: #0D609C;
  --vt-accent: #63F9E7;
  --vt-navy: #071A34;
  --vt-wine: #84224F;
  --vt-red: #dc2626;
  --vt-green: #059669;
  --vt-yellow: #f0c040;
  --vt-white: #FFFFFF;
  --vt-gray-1: #F2F2F2;
  --vt-gray-2: #E6E6E6;
  --vt-gray-3: #CCCCCC;
  --vt-text: #3C3C3C;
  --vt-text-light: #6b7280;
  --vt-font: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  --vt-radius: 5px;
  --vt-max-w: 1100px;
}
body {
  margin: 0;
  padding: 0;
}
.vt-app {
  font-family: var(--vt-font);
  color: var(--vt-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  background: var(--vt-white);
  -webkit-font-smoothing: antialiased;
}
.vt-app *,
.vt-app *::before,
.vt-app *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.vt-header {
  background: var(--vt-secondary);
  padding: 48px 24px 40px;
  position: relative;
  overflow: hidden;
}
.vt-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vt-accent);
}
.vt-header-inner {
  max-width: var(--vt-max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.vt-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.vt-header-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}
.vt-app .vt-header-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.vt-app .vt-header-logos .vt-logo {
  max-width: none;
  height: 90px;
  width: auto;
}
.vt-app .vt-header-logos .vt-logo--company {
  height: 36px;
}
.vt-logo {
  display: block;
  flex-shrink: 0;
}
.vt-logo-link {
  flex-shrink: 0;
}
.vt-header-text {
  flex: 1;
  min-width: 0;
}
.vt-header h1 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--vt-white);
  line-height: 1.25;
  margin-bottom: 8px;
}
.vt-header-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}
.vt-header-sub strong {
  color: var(--vt-accent);
  font-weight: 600;
}
.vt-stats {
  max-width: var(--vt-max-w);
  margin: -24px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 12px;
}
.vt-stat {
  background: var(--vt-white);
  border-radius: var(--vt-radius);
  padding: 16px 18px;
  border: 1px solid var(--vt-gray-2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.vt-stat-num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.vt-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vt-text-light);
  margin-top: 4px;
}
.vt-filters-area {
  max-width: var(--vt-max-w);
  margin: 20px auto 0;
  padding: 0 24px;
}
.vt-filters {
  background: var(--vt-gray-1);
  border-radius: var(--vt-radius);
  padding: 14px 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid var(--vt-gray-2);
}
.vt-search {
  flex: 1 1 260px;
  padding: 0 14px;
  height: 38px;
  border-radius: var(--vt-radius);
  border: 1px solid var(--vt-gray-2);
  font-size: 14px;
  font-family: var(--vt-font);
  background: var(--vt-white);
  color: var(--vt-text);
  outline: none;
  transition: border-color 0.2s;
}
.vt-search:focus {
  border-color: var(--vt-secondary);
}
.vt-search::placeholder {
  color: var(--vt-gray-3);
}
.vt-sel {
  padding: 0 12px;
  height: 38px;
  border-radius: var(--vt-radius);
  border: 1px solid var(--vt-gray-2);
  font-size: 13px;
  font-family: var(--vt-font);
  font-weight: 600;
  color: var(--vt-text);
  background: var(--vt-white);
  cursor: pointer;
  outline: none;
  min-width: 120px;
}
.vt-sel:focus {
  border-color: var(--vt-secondary);
}
.vt-count {
  margin-top: 8px;
  font-size: 13px;
  color: var(--vt-text-light);
}
.vt-list {
  max-width: var(--vt-max-w);
  margin: 16px auto 48px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vt-card {
  background: var(--vt-white);
  border-radius: var(--vt-radius);
  border: 1px solid var(--vt-gray-2);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.vt-card:hover {
  border-color: var(--vt-gray-3);
}
.vt-card.vt-open {
  border-color: var(--vt-secondary);
  box-shadow: 0 4px 20px rgba(13, 96, 156, 0.10);
}
.vt-card[data-cat="Administrative changes"] {
  border-left: 4px solid var(--vt-secondary);
}
.vt-card[data-cat="Quality changes"] {
  border-left: 4px solid #0d9c7a;
}
.vt-card[data-cat="Safety, Efficacy, Pharmacovigilance changes"] {
  border-left: 4px solid var(--vt-wine);
}
.vt-card[data-cat="PMF/VAMF"] {
  border-left: 4px solid #7c3aed;
}
.vt-card-hd {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.vt-card-id {
  font-size: 14px;
  font-weight: 700;
  min-width: 88px;
  flex-shrink: 0;
}
.vt-card[data-cat="Administrative changes"] .vt-card-id {
  color: var(--vt-secondary);
}
.vt-card[data-cat="Quality changes"] .vt-card-id {
  color: #0d9c7a;
}
.vt-card[data-cat="Safety, Efficacy, Pharmacovigilance changes"] .vt-card-id {
  color: var(--vt-wine);
}
.vt-card[data-cat="PMF/VAMF"] .vt-card-id {
  color: #7c3aed;
}
.vt-card-topic {
  flex: 1;
  min-width: 180px;
  font-size: 13.5px;
  color: var(--vt-text-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vt-open .vt-card-topic {
  white-space: normal;
}
.vt-chev {
  font-size: 16px;
  color: var(--vt-gray-3);
  transition: transform 0.2s;
  flex-shrink: 0;
  user-select: none;
}
.vt-open .vt-chev {
  transform: rotate(180deg);
  color: var(--vt-secondary);
}
.vt-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.vt-badge--updated {
  color: var(--vt-secondary);
  background: #e8f4fd;
}
.vt-badge--removed {
  color: var(--vt-red);
  background: #fef2f2;
}
.vt-badge--new {
  color: var(--vt-green);
  background: #ecfdf5;
}
.vt-tbadge {
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.vt-tbadge--IA {
  color: #a16207;
  background: #fefce8;
}
.vt-tbadge--IAin,
.vt-tbadge--IA-in {
  color: #15803d;
  background: #f0fdf4;
}
.vt-tbadge--IB {
  color: #c2410c;
  background: #fff7ed;
}
.vt-tbadge--II {
  color: #be185d;
  background: #fdf2f8;
}
.vt-card-body {
  display: none;
  padding: 0 18px 18px;
}
.vt-open .vt-card-body {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.vt-pnl {
  flex: 1;
  min-width: 280px;
  padding: 16px 18px;
  border-radius: var(--vt-radius);
  border: 1px solid;
}
.vt-pnl--old {
  background: #fafaf9;
  border-color: var(--vt-gray-2);
}
.vt-pnl--new {
  background: #f0fdfa;
  border-color: #ccfbf1;
}
.vt-pnl-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.vt-pnl--old .vt-pnl-hd {
  border-bottom: 1px solid var(--vt-gray-2);
}
.vt-pnl--new .vt-pnl-hd {
  border-bottom: 1px solid #ccfbf1;
}
.vt-pnl-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.vt-pnl--old .vt-pnl-lbl {
  color: #78716c;
}
.vt-pnl--new .vt-pnl-lbl {
  color: var(--vt-secondary);
}
.vt-pnl-cls {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.vt-pnl--old .vt-pnl-cls {
  color: #57534e;
}
.vt-pnl--new .vt-pnl-cls {
  color: #047857;
}
.vt-pnl-topic {
  font-size: 14px;
  line-height: 1.5;
  color: var(--vt-text);
  margin-bottom: 6px;
}
.vt-pnl-spec::before {
  display: block;
  font-size: 10px;
  color: #be941e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-style: normal;
  margin-bottom: 4px;
}
.vt-pnl-spec {
  font-size: 14px;
  line-height: 1.5;
  color: var(--vt-text);
  font-weight: 500;
  font-style: italic;
  margin-top: 10px;
  padding: 10px 14px;
  background: #fef9e7;
  
  border: 1px solid var(--vt-yellow);
  border-left: 4px solid var(--vt-yellow);
  border-radius: var(--vt-radius);
}
.vt-arrow {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: var(--vt-gray-3);
  padding: 0 4px;
  align-self: center;
}
.vt-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--vt-gray-3);
  font-size: 16px;
}
.vt-lm-wrap {
  text-align: center;
  padding: 24px 0;
}
.vt-lm {
  display: inline-block;
  padding: 10px 32px;
  border-radius: var(--vt-radius);
  background: var(--vt-accent);
  color: var(--vt-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--vt-font);
  transition: background 0.2s;
}
.vt-lm:hover {
  background: var(--vt-secondary);
  color: var(--vt-white);
}
.vt-eurlex {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 4px 4px 5px 5px;
  font-size: 10px;
  font-family: var(--vt-font);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--vt-secondary);
  color: var(--vt-white);
  border-radius: 3px;
}
.vt-eurlex:hover {
  background: #0a4a77;
}
.vt-eurlex svg {
  vertical-align:baseline;
  width: 14px;
  height: 14px;
  stroke: var(--vt-white);
  fill: none;
  stroke-width: 3;
}
.vt-clear {
  height: 38px;
  padding: 0 16px;
  border-radius: var(--vt-radius);
  border: 0;
  background: var(--vt-secondary);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--vt-font);
  color: var(--vt-white);
  cursor: pointer;
  white-space: nowrap;
}
.vt-clear:hover {
  background-color: #0a4a77;
}
@media (max-width: 640px) {
  .vt-header-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  .vt-logo {
    height: 40px;
  }
  .vt-logo-link {
    order: -1;
    margin-left: 0;
  }
  .vt-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .vt-filters {
    flex-direction: column;
  }
  .vt-search,
  .vt-sel,
  .vt-clear {
    width: 100%;
    max-height: 38px;
  }
  .vt-card-hd {
    padding: 10px 14px;
  }
  .vt-card-body {
    padding: 0 14px 14px;
  }
  .vt-pnl {
    min-width: 100%;
  }
  .vt-arrow {
    display: none;
  }
}
