:root {
  --color-brand: #1bd96a;
  --bg: #16181c;
  --bg-nav: #16181c;
  --card-bg: #27292E;
  --card-border: rgba(255, 255, 255, 0.06);
  --text-primary: #f2f3f5;
  --text-secondary: #9a9ea6;
  --text-muted: #6c7178;
  --pill-bg: rgba(255, 255, 255, 0.06);
  --pill-bg-hover: rgba(255, 255, 255, 0.1);
  --radius-lg: 14px;
  --radius-md: 99px;
  --radius-pill: 999px;
  --color-link: #5b9df9;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter Regular";
  src: url("Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: "Inter Regular";
  margin: 0;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

button {
  background-color: var(--color-brand);
  border: none;
  color: black;
  font-family: inherit;
  cursor: pointer;
}

/* navbar*/

nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 32px;
  background-color: var(--bg-nav);
  border-bottom: 1px solid var(--card-border);
  max-width: 1360px;
  margin: 0 auto;
}

.nav-left {
  justify-self: start;
}

.nav-left .logo {
  height: 28px;
  width: auto;
  color: var(--text-primary);
}

.nav-left:hover {
  cursor: pointer;
}

.nav-center {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--pill-bg);
  color: var(--text-primary);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s;
}

.nav-pill:hover {
  background-color: var(--pill-bg-hover);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: 0.25s;
}

.nav-link:hover {
  color: var(--text-primary);
  background-color: var(--pill-bg);
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
}

.btn-publish {
  background-color: var(--color-brand);
  color: #0a1a10;
}

.avatar-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  padding: 2px;
  border-radius: var(--radius-pill);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-btn .icon-chevron {
  color: var(--text-secondary);
  width: 16px;
  height: 16px;
}

/* nav discover dropdown */

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-trigger.nav-pill {
  width: auto;
}

.nav-dropdown-panel {
  left: 0;
  right: auto;
  top: calc(100% + 10px);
  width: 240px;
  padding: 5px;
  background-color: #202226;
}

.nav-dropdown-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 12px;
  font-size: 15px;
}

.nav-dropdown-option .icon {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.nav-dropdown-option:hover .icon {
  color: var(--text-primary);
}

/* head */

.header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  max-width: 1360px;
  margin: 0 auto;
}

.project-icon {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background-color: var(--card-bg);
  flex-shrink: 0;
}

.header-info {
  flex: 1;
  min-width: 0;
}

.header-info h1 {
  font-family: "Inter";
  margin: 0 0 1px;
  font-size: 30px;
  font-weight: 400;
}

.tagline {
  margin: 0 0 4px;
  color: var(--text-secondary);
  font-size: 16px;
}

.stats {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat .icon {
  width: 16px;
  height: 16px;
}

.stat-dot {
  color: var(--text-muted);
}

.tag {
  background-color: var(--pill-bg);
  color: var(--text-secondary);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-download {
  background-color: var(--color-brand);
  color: #0a1a10;
  padding: 14px 24px;
  font-size: 15px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--pill-bg);
  color: var(--text-primary);
  transition: 0.25s;
}

.icon-btn:hover,
.icon-btn-2:hover {
  background-color: var(--pill-bg-hover);
}

.icon-btn-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg);
  color: var(--text-primary);
  transition: 0.25s;
}

/*containers and layouts */

.container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px 48px;
  align-items: start;
}

.left {
  min-width: 0;
}

.right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* tab */

.selector {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 16px;
  width: fit-content;
}

.change {
  background: transparent;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
}

.change:hover {
  color: var(--text-primary);
}

.change.active {
  background-color: rgba(27, 217, 106, 0.12);
  color: var(--color-brand);
}

/* tab panels */

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: tab-fade 0.15s ease;
}

@keyframes tab-fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* card */

.card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.card h1 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter";
}

.card h1:not(:first-child) {
  margin-top: 24px;
}

.card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 12px;
}

.content-card p {
  color: #c7c9cd;
  line-height: 1.7;
}

.content-card h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter";
}

.inline-code {
  background-color: var(--pill-bg);
  border-radius: 6px;
  padding: 2px 6px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  color: var(--text-primary);
}

/* ---------- GALLERY TAB ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-card {
  background-color: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
}

.gallery-thumb {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
}

.gallery-thumb .icon {
  width: 34px;
  height: 34px;
  opacity: 0.9;
}

.gallery-info {
  padding: 14px 16px 16px;
}

.gallery-info h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Inter";
  color: var(--text-primary);
}

.gallery-info p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CHANGELOG TAB ---------- */

.changelog-list {
  display: flex;
  flex-direction: column;
}

.changelog-item {
  position: relative;
  padding-left: 26px;
  padding-bottom: 26px;
}

.changelog-item:last-child {
  padding-bottom: 0;
}

.changelog-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--color-brand);
  box-shadow: 0 0 0 4px rgba(27, 217, 106, 0.15);
}

.changelog-item::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 18px;
  bottom: 0;
  width: 2px;
  background-color: rgba(27, 217, 106, 0.25);
}

.changelog-item:last-child::after {
  display: none;
}

.changelog-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
}

.changelog-version {
  font-family: "Inter";
  font-weight: 800;
  font-size: 17px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.changelog-by {
  color: var(--text-secondary);
}

.changelog-author {
  color: var(--color-link);
  font-weight: 600;
}

.changelog-date {
  color: var(--text-secondary);
}

.changelog-download {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-brand);
  font-weight: 700;
  font-size: 14px;
}

.changelog-download .icon {
  width: 16px;
  height: 16px;
}

.changelog-notes {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #c7c9cd;
  font-size: 14px;
  line-height: 1.75;
}

.changelog-notes li {
  margin-bottom: 3px;
}

.changelog-note-text {
  margin: 10px 0 0;
  color: #c7c9cd;
  font-size: 14px;
  line-height: 1.7;
}

/* shared release badge, used in changelog + versions table */

.release-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background-color: rgba(27, 217, 106, 0.15);
  color: var(--color-brand);
  font-size: 11px;
  font-weight: 800;
  font-family: "Inter";
  margin-right: 8px;
  flex-shrink: 0;
}

/* ---------- VERSIONS TAB ---------- */

.versions-card {
  padding: 0;
  overflow: hidden;
}

.vt-row {
  display: grid;
  grid-template-columns: 120px 1fr 90px 120px 90px 76px;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--card-border);
}

.vt-row:last-child {
  border-bottom: none;
}

.vt-head {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.02);
}

.vt-version {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}

.vt-row:not(.vt-head)>div {
  font-size: 14px;
  color: var(--text-secondary);
}

.vt-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}

.vt-download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--pill-bg);
  color: var(--color-brand);
  transition: 0.2s;
}

.vt-download:hover {
  background-color: var(--pill-bg-hover);
}

.vt-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--text-secondary);
  transition: 0.2s;
}

.vt-more:hover {
  background-color: var(--pill-bg-hover);
  color: var(--text-primary);
}

@media (max-width: 760px) {
  .vt-row {
    grid-template-columns: 100px 1fr 70px;
  }

  .vt-row>div:nth-child(4),
  .vt-row>div:nth-child(5) {
    display: none;
  }
}

/* compatibility sidebar */

.label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.versions,
.platforms,
.environments,
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.versions p,
.tags p {
  background-color: var(--pill-bg);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-md);
  margin: 0;
  cursor: pointer;
}

.platforms p,
.environments p {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--pill-bg);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  margin: 0;
  cursor: pointer;
}

.platforms .Fabric .icon,
.environments .icon {
  width: 15px;
  height: 15px;
  color: var(--text-secondary);
}

/* link sidebar */

.side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.side-link .icon {
  width: 17px;
  height: 17px;
}

.side-link .icon-ext {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: var(--text-muted);
}

/* creator sidebar */

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

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

.creator img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.creator h2 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.creator p {
  font-size: 13px;
  margin: 2px 0 0;
  color: var(--text-muted);
}

/* sidebar details */

.right .card:last-child p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.right .card:last-child p:last-child {
  margin-bottom: 0;
}

.right .card:last-child .icon {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.right .card:last-child a {
  color: var(--color-brand);
  font-weight: 600;
}

/* ---------- DOWNLOAD MODAL ---------- */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(8, 9, 11, 0.6);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  z-index: 1000;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-content {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 480px;
  max-width: 100%;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 2px 0 rgba(255, 255, 255, 0.03) inset;
  animation: modal-in 0.16s ease-out;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--card-border);
}

.modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  background-color: var(--bg);
  flex-shrink: 0;
}

.modal-header h2 {
  font-family: "Inter";
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pill-bg);
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: 0.2s;
}

.modal-close:hover {
  background-color: var(--pill-bg-hover);
  color: var(--text-primary);
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  margin: 20px 0 16px;
}

.modal-divider::before,
.modal-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--card-border);
}

.modal-selects {
  display: flex;
  gap: 12px;
}

/* ---------- custom dropdown (replaces native <select>) ---------- */

.dropdown {
  position: relative;
  flex: 1;
  min-width: 0;
}

.dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background-color: var(--pill-bg);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  padding: 13px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.dropdown-trigger:hover {
  background-color: var(--pill-bg-hover);
}

.dropdown.open .dropdown-trigger {
  background-color: var(--pill-bg-hover);
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(27, 217, 106, 0.15);
}

.dropdown-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-primary);
}

.dropdown-value.placeholder {
  color: var(--text-secondary);
  font-weight: 500;
}

.dropdown-trigger .icon-chevron {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.dropdown.open .dropdown-trigger .icon-chevron {
  transform: rotate(180deg);
  color: var(--color-brand);
}

.dropdown-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 40;
  background-color: #303339;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  max-height: 260px;
  overflow-y: auto;
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.dropdown-panel::-webkit-scrollbar {
  width: 8px;
}

.dropdown-panel::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-panel::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.dropdown.open .dropdown-panel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-option {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: 0.12s;
}

.dropdown-option:hover {
  background-color: var(--pill-bg-hover);
  color: var(--text-primary);
}

.dropdown-option.selected {
  background-color: rgba(27, 217, 106, 0.14);
  color: var(--color-brand);
}

.download-result {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 16px;
  background-color: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  animation: modal-in 0.16s ease-out;
}

.download-result .dr-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.download-result .dr-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-result .dr-version {
  font-family: "Inter";
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.download-result .dr-badge {
  background-color: rgba(27, 217, 106, 0.14);
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
}

.download-result .dr-meta {
  color: var(--text-muted);
  font-size: 13px;
}

.btn-download-sm {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-brand);
  color: #0a1a10;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-download-sm .icon {
  width: 16px;
  height: 16px;
}

/* footer */

.footer {
  background-color: var(--bg-nav);
  border-top: 1px solid var(--card-border);
  padding: 48px 32px 24px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter";
  font-weight: 700;
  font-size: 19px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 24px;
  height: 24px;
  color: var(--color-brand);
}

.footer-logo .logo {
  height: 28px;
  width: auto;
  color: var(--text-primary);
  cursor: pointer;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-socials a {
  color: var(--text-secondary);
  transition: 0.2s;
}

.footer-socials a:hover {
  color: var(--text-primary);
}

.footer-oss {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 4px;
}

.footer-oss a {
  color: var(--color-brand);
  font-weight: 600;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.footer-col h4 {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-disclaimer {
  max-width: 1360px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* make responsive*/

@media (max-width: 900px) {
  .nav-center {
    display: none;
  }

  .header {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .container {
    grid-template-columns: 1fr;
  }

  .modal-selects {
    flex-direction: column;
  }
}