@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");
:root {
  --primary-color-20: #332355;
  --primary-color-30: #3d2a67;
  --primary-color-40: #523889;
  --primary-color-50: #6646ab;
  --primary-color-60: #7d62b7;
  --primary-color-70: #927bc3;
  --secondary-color: #2f6d4a;
  --background-color: #f6f8fa;
  --text-color: #222222;
  --text-color-light: #444444;
}
h1 {
  color: var(--primary-color-30);
}
h2 {
  color: var(--primary-color-40);
}
h3 {
  color: var(--primary-color-50);
}
body {
  font-family:
    Noto Sans,
    sans-serif;
  font-size: 15px;
  margin: 40px auto;
  max-width: 700px;
  color: var(--text-color);
}
.latest-box {
  background: var(--background-color);
  border-left: 5px solid var(--secondary-color);
  padding: 25px;
  border-radius: 6px;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.info-box {
  background: var(--background-color);
  border-left: 5px solid var(--primary-color-70);
  padding: 25px;
  border-radius: 6px;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.release-card {
  border: 1px solid var(--primary-color-70);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.tag {
  background: var(--primary-color-40);
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}
.latest-tag {
  background: var(--secondary-color);
}

/* Grid styling for the interactive files list */
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin-top: 15px;
}
.resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--background-color);
  padding: 10px 15px;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  gap: 10px;
}
.resource-info {
  font-weight: bold;
  min-width: 150px;
}

/* URL Display and Copier Styling */
.copy-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
  min-width: 0;
  background: #eaecef;
  border-radius: 4px;
  border: 1px solid #d1d5da;
}
.url-box {
  padding: 8px 12px;
  font-family: monospace;
  font-size: 0.85em;
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
}
.copy-btn {
  background: #f6f8fa;
  border: none;
  border-left: 1px solid #d1d5da;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.copy-btn:hover {
  background: #f0f2f4;
}
.copy-btn svg {
  width: 14px;
  height: 14px;
  fill: #444;
}

.icon-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;

  width: 165px;
  height: 40px;

  background: var(--primary-color-40);
  border-radius: 2px;

  flex: none;
  order: 1;
  flex-grow: 0;

  color: #fff;
  text-decoration: none;

  font-style: normal;
  font-weight: 600;
}
.icon-btn:hover {
  background: var(--primary-color-50);
}

.release-description {
  margin: 15px 0;
  color: var(--text-color-light);
  font-size: 0.95em;
}
.release-description ul {
  padding-left: 20px;
}
.release-description code {
  background: #f0f0f0;
  padding: 2px 4px;
  border-radius: 4px;
  font-family: monospace;
}
.asset-links {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

hr {
  border: 0;
  border-top: 1px solid #eaecef;
  margin: 30px 0;
}
