/* software-extra.css — SiMa.ai Our Story
 * Contains ONLY what Tailwind cannot express: @keyframes + classes that reference them.
 * Load in WordPress <head> after software-main.css.
 */

/* Timeline panel fade-up entrance */
@keyframes tlFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tl-panel-enter {
  animation: tlFadeUp 0.22s ease forwards;
}

/*
 * Global Offices — flag-icon-css must load BEFORE revamp Tailwind (see revamp-assets.php).
 * Scoped sizing so .fi base rules + :before nbsp never squash w-10/h-7 (handoff order).
 */
#sima-revamp .sima-os-office-flag.fi {
  display: block;
  width: 2.5rem;
  height: 1.75rem;
  line-height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#sima-revamp .sima-os-office-flag.fi:before {
  content: none;
  display: none;
}
