/* Universal cursor from Cursors4U */
* {
  cursor: url(https://cur.cursors-4u.net/nature/nat-7/nat678.cur), auto !important;
}

/* Root styles: single consistent theme */
:root {
  --width: 900px;
  --font-main: Palatino, serif;
  --font-secondary: Palatino, serif;
  --font-scale: 1.3em;
  --background-color: #1B2C45;
  --heading-color: #fff;
  --text-color: #fff;  /* Changed text color to white */
  --link-color: #111;
  --visited-color: #222;
  --code-background-color: #f2f2f2;
  --code-color: #222;
  --blockquote-color: #222;
}

/* Base styles */
body {
  font-family: var(--font-secondary);
  font-size: var(--font-scale);
  margin: auto;
  padding: 20px;
  max-width: var(--width);
  text-align: left;
  background-color: var(--background-color);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
  color: var(--text-color);  /* This will apply the white text color */
}

/* Footer Styling */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #fff;
  font-size: 1rem;
  background-color: #1B2C45;
  margin-top: 10rem;
}
/* Navigation Links */
nav a {
  color: #fff;  /* Set the link text color to white */
  text-decoration: underline;  /* Optional: Removes the underline from links */
  transition: color 0.3s ease;  /* Optional: Adds smooth transition on hover */
}

/* Optional: Change color when hovering over links */
nav a:hover {
  color: #d9c8f3;  /* Change to a light color on hover, like light purple */
}

.status-embed {
  border: 2px dashed #d9c8f3;
  border-radius: 12px;
  margin: 1rem auto;
  max-width: 480px;
  height: 100px;
  width: 100%;
}

.footer-links {
  margin: 1.5rem 0;
  font-weight: 500;
}

.footer-links a {
  color: #d9c8f3;
  text-decoration: underline;
  margin: 0 0.5rem;
}

.footer-links .tooltip {
  font-size: 0.85rem;
  color: #aaa;
  margin-left: 0.5rem;
}

.powered {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 2rem;
}

.powered a {
  color: #d9c8f3;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--heading-color);
  font-style: italic;
}

strong, b {
  color: var(--heading-color);
}

a {
  color: var(--link-color);
  cursor: pointer;
  text-decoration: underline;
}

nav a {
  margin-right: 5px;
}

button {
  margin: 0;
}

main {
  line-height: 1.6;
}

table {
  width: 100%;
}

hr {
  border: 0;
  border-top: 1px dashed;
}

img {
  max-width: 100%;
}

code {
  font-family: monospace;
  padding: 2px;
  background-color: var(--code-background-color);
  color: var(--code-color);
  border-radius: 3px;
}

blockquote {
  border-left: 1px solid #999;
  color: var(--blockquote-color);
  padding-left: 20px;
  font-style: italic;
}

button {
  border: 0;
  background-color: inherit;
  text-decoration: underline;
  color: var(--heading-color);
}

.title {
  text-decoration: none;
}

.title h1 {
  font-size: 1.5em;
}

.inline {
  width: auto !important;
}

.highlight,
.code {
  padding: 1px 15px;
  background-color: var(--code-background-color);
  color: var(--code-color);
  border-radius: 3px;
  margin-block-start: 1em;
  margin-block-end: 1em;
  overflow-x: auto;
}

ul.blog-posts {
  list-style-type: none;
  padding: unset;
}

ul.blog-posts li {
  display: flex;
}

ul.blog-posts li span {
  flex: 0 0 130px;
}

ul.blog-posts li a:visited {
  color: var(--visited-color);
}

.upvote-button {
  display: block;
  content: "toast this post";
}

.upvote-button[disabled]::before {
  content: "toasted";
}

.upvote-count::before {
  content: "  ";
}

.upvote-count::after {
  content: " toasts";
}
/* Add to your CSS */
.status-container {
  max-width: 500px;
  margin: 2em auto;
  text-align: center;
  font-family: sans-serif;
}

.status-container h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5em;
  color: #fff; /* or #ccc depending on your theme */
}
