/* LLMs Assemble - Custom Theme */

/* Color palette and typography matching extension */
:root {
  --dark-navy: #0d1c2d;
  --steel-blue: #2c4a78;
  --sky-blue: #92c6e3;
  --blood-red: #c43023;
  --slate-gray: #767c81;
  --white: #ffffff;
  --light-gray: #d0d0d0;

  --font-size-h1: 2em;
  --font-size-h2: 1.5em;
  --font-size-base: 1em;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--dark-navy);
  color: var(--white);
  line-height: 1.6;
}

#container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#main_content {
  flex: 1;
}

/* Typography */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5em;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--white);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  padding-bottom: 0.3em;
  border-bottom: 2px solid var(--steel-blue);
}

h3 {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--white);
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1em;
  color: var(--white);
}

/* Links */
a {
  color: var(--sky-blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--white);
}

/* Lists */
ul {
  margin-left: 2em;
}

ol {
  margin-left: 2em;
  margin-bottom: 1.5em;
}

ul li {
  list-style: disc;
  margin-bottom: 0.25em;
  color: var(--white);
}

ol li {
  list-style: decimal;
  margin-bottom: 0.5em;
  color: var(--white);
}

/* Nested lists */
li ul,
li ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

li ul li,
li ol li {
  margin-bottom: 0.25em;
}


/* Strong text */
strong {
  font-weight: 800;
}

/* Special emphasis for key workflow terms */
.pinned-tabs,
.working-tab {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Code */
code {
  background-color: rgba(44, 74, 120, 0.3);
  color: var(--light-gray);
  border: 1px solid var(--steel-blue);
  border-radius: 3px;
  padding: 2px 6px;
  font-family: "SF Mono", Monaco, Consolas, monospace;
}

/* Code blocks */
pre {
  background-color: rgba(44, 74, 120, 0.2);
  border: 2px solid var(--steel-blue);
  border-radius: 6px;
  padding: 16px;
  margin: 1.5em 0;
  overflow-x: auto;
}

pre code {
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(--white);
  line-height: 1.5;
}

/* Important action links - red for download and access key (only in main content) */
#main_content a[href*=".crx"],
#main_content a[href*="forms.gle"] {
  color: var(--blood-red) !important;
  font-weight: 600;
}

#main_content a[href*=".crx"]:hover,
#main_content a[href*="forms.gle"]:hover {
  color: var(--white) !important;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: var(--font-size-base);
  color: var(--slate-gray);
  align-items: center;
  border-top: 1px solid var(--steel-blue);
  padding-top: 10px;
  margin-top: 40px;
}

footer .footer-links a {
  color: var(--sky-blue);
  text-decoration: none;
}

footer .footer-links a:hover {
  color: var(--white);
}

footer .footer-links span {
  color: var(--sky-blue);
}

footer .footer-location {
  color: var(--slate-gray);
}

/* Note/callout styling for important workflow notes */
blockquote {
  background-color: rgba(44, 74, 120, 0.15);
  border-left: 4px solid var(--steel-blue);
  border-radius: 4px;
  padding: 16px 20px;
  margin: 1.5em 0;
}

blockquote p {
  margin-bottom: 0.5em;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote ul {
  margin-top: 0.5em;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  #container {
    padding: 20px 15px;
  }
}
