body {
    margin: 0;
    font-family: 'Courier New', Courier;
    background-color: #f4f4f4;
    font-size: 14px;
    zoom: 100%  ;
    transition: background-color 0.3s ease, color 0.3s ease;
    }

    a:visited{
  color: black;
}
a::before {
  color: black;
}


.container {
    display: flex;
    flex-direction: row; /* Lägger allt på en rad från vänster till höger */
    gap: 20px;           /* Ger lite snyggt mellanrum mellan kolumnerna */
    align-items: stretch; /* Gör att kolumnerna sträcker sig lika långt i höjdled */
}


/* ============================================
   TERMINAL-PROFIL (Ersätter profilbilden)
   ============================================ */
.terminal-profile {
    width: 100%;
    min-height: 300px;
    background-color: #111318;
    border: 2px solid #000;
    border-radius: 8px;
    box-shadow: 4px 4px 0px #000; /* Matchar dina knappar! */
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
    background-color: #323232;
    border-bottom: 2px solid #000;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.term-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #000;
}

.term-btn.close { background-color: #ff5f56; }
.term-btn.min { background-color: #ffbd2e; }
.term-btn.max { background-color: #27c93f; }

.term-title {
    color: darkgrey;
    font-size: 0.75rem;
    margin-left: 10px;
    letter-spacing: 0.05em;
}

.terminal-body {
    padding: 16px;
    font-size: 0.85rem;
    line-height: 1.6;
    flex: 1;
}

.terminal-body p {
    margin: 0 0 12px 0;
    color: #e6edf3;
}

.term-prompt {
    color: #27c93f; /* Klassisk grön terminalfärg */
    font-weight: bold;
    margin-right: 8px;
}

.term-output {
    color: #ffcc00; /* Matchar sajtens gula accentfärg */
    margin-bottom: 16px !important;
}

/* Animerad blinkande markör */
.term-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background-color: #ffcc00;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #f6c123;
  border-bottom: 1px solid #1a1a1a;
  height: 32px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 250s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-size: 0.78rem;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  font-family: 'Courier New', Courier;
  padding: 0 2.5rem;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FOOTER ── */
  .site-footer {
    width: 100%;
    background-color: #1a1a1a;
    border-top: 3px solid #f6c123;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    color: black;
    line-height: 1.7;
    box-sizing: border-box;
  }
  .site-footer .footer-label {
    background: #f6c123;
    color: #000;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 8px;
    border: 2px solid #000;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 0px;
  }
  .site-footer p { margin: 0; color: #888; }
/* Vänster kolumn */
.left-column {
    width: 30%;
    background-color: #323232; 
    color: darkgrey;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* sprider innehållet över höjden */
}

.profile-pic {
    width: 100%;
    border-radius: 10px;
    margin: 10px 0;
}
.logo-pic {
    width: 50%;
    border-radius: 10px;
    margin: 10px 0;
}
.links {
    list-style: none;
    padding: 0;
}

.links li {
    margin: 10px 0;
}

.links a {
    color: #ffcc00;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

/* Höger kolumn */
.right-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 bredvid varandra */
    gap: 20px;
    padding: 20px;
}

.right-projects .right-column {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.right-column {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.image-link {
    text-decoration: none;
    color: inherit;
}

.image-link img {
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-link img:hover {
    transform: scale(1.05);
}

.car-image {
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    margin: 20px 0;
}

.description {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 700px;
    text-align: left;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #000; /* Tydlig svart kant */
    border-radius: 0px; /* Helt fyrkantig (eller ha kvar 5px om du vill) */
    cursor: pointer;
    /* Hård skugga */
    box-shadow: 4px 4px 0px #000; 
    transition: all 0.2s ease;
}

.back-button:hover {
    background-color: #ffdb4d;
    transform: translate(-2px, -2px); /* Rör sig uppåt/vänster */
    box-shadow: 6px 6px 0px #000; /* Skuggan blir längre */
}

.back-button:active {
    transform: translate(2px, 2px); /* Rör sig ner till ursprungsläget */
    box-shadow: 0px 0px 0px #000; /* Skuggan försvinner (knappen trycks in) */
}
.code-image {
    border-radius: 25px;
    background-color: #73AD21;
    padding: 20px;
    width: 200px;
    height: 150px;
}

  .code-editor {
                    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", "Courier New", monospace;
                    background: linear-gradient(180deg,#0f1720,#111318);
                    color: #e6edf3;
                    border-radius: 10px;
                    box-shadow: 0 6px 18px rgba(2,6,23,0.6);
                    overflow: hidden;
                    border: 1px solid rgba(255,255,255,0.04);
                    margin: 1rem 0;
                }
                .code-editor .editor-header{
                    display:flex;
                    justify-content:space-between;
                    align-items:center;
                    gap:8px;
                    padding:8px 12px;
                    background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent);
                    border-bottom: 1px solid rgba(255,255,255,0.02);
                }
                .code-editor .filename{
                    font-size:0.95rem;
                    color:#cbd5e1;
                }
                .code-editor .editor-actions button{
                    background: transparent;
                    border: 1px solid rgba(255,255,255,0.06);
                    color:#cbd5e1;
                    padding:6px 8px;
                    border-radius:6px;
                    cursor:pointer;
                    font-size:0.9rem;
                }
                .code-editor .editor-actions button:hover{
                    background: rgba(255,255,255,0.02);
                }
                .code-editor textarea{
                    width:100%;
                    min-height:280px;
                    max-height:60vh;
                    resize:vertical;
                    border: none;
                    outline: none;
                    padding:14px;
                    background: transparent;
                    color: inherit;
                    font-size:0.95rem;
                    line-height:1.5;
                    box-sizing:border-box;
                    caret-color: #9be7ff;
                    white-space: pre;
                }
                .code-editor .status{
                    padding:8px 12px;
                    font-size:0.85rem;
                    color: #9aa6b2;
                    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.01));
                    border-top: 1px solid rgba(255,255,255,0.02);
                }
.hero-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: black;
  text-align: center;
  padding: 100px 20px;
  top: 0%;
  image-rendering: optimizeQuality;
  border-radius: 10 px;
}

.input-field {
    padding: 12px;
    border: 2px solid #000; /* Samma ram som knappen */
    border-radius: 0px;
    box-shadow: 4px 4px 0px #000; /* Samma skugga */
    outline: none; /* Tar bort standard-blå ram vid klick */
    transition: all 0.2s;
}

.input-field:focus {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}



/* ============================================
   BLOGG-INLÄGG (blogginlagg-1.html)
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

a { color: #000; text-decoration: none; }
a:visited { color: #000; }
a:hover { text-decoration: underline; }

/* ── VÄNSTER KOLUMN (blogg) ── */
.left-column {
  width: 300px;
  min-width: 300px;
  flex-shrink: 0; /* förhindra att den krymper */
}

.left-top h2 {
  color: #ffcc00;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.left-top p {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 20px;
  line-height: 1.5;
}

.logo-pic {
  width: 100%;
  border-radius: 10px;
  margin: 16px 0;
}

.links {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.links li { margin: 10px 0; }
.links a {
  color: #ffcc00;
  text-decoration: none;
  font-size: 0.85rem;
}
.links a:hover { text-decoration: underline; }

.left-bottom {
  font-size: 0.7rem;
  color: #555;
  line-height: 1.6;
  border-top: 1px solid #444;
  padding-top: 14px;
}

/* ── HÖGER KOLUMN / ARTIKEL ── */
.right-column {
  flex: 1;
  min-width: 0; /* viktigt: förhindrar att flex-barn expanderar utanför containern */
  background-color: #f4f4f4;
  padding: 40px;
}

/* TILLBAKA-KNAPP (blogg-variant) */
.back-button {
  margin-bottom: 30px;
  padding: 8px 20px;
  font-size: 0.8rem;
  border-radius: 0;
}

/* KATEGORI-TAGG */
.category-tag {
  display: inline-block;
  background: #111;
  color: #ffcc00;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 16px;
  border: 2px solid #000;
}

h1 {
  font-family: 'Courier New', monospace;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  border-left: 5px solid #ffcc00;
  padding-left: 14px;
}

.intro-text {
  font-size: 1rem;
  color: #444;
  border-left: 3px solid #ccc;
  padding-left: 14px;
  margin-bottom: 16px;
  line-height: 1.7;
  font-style: italic;
}

.meta {
  display: flex;
  gap: 20px;
  font-size: 0.75rem;
  color: #888;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 8px 0;
  margin-bottom: 28px;
}

/* BRÖDTEXT */
.article-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 680px;
}

/* VERKTYGS-KORT */
.tool-card {
  background: #fff;
  border: 2px solid #000;
  border-left: 6px solid #ffcc00;
  padding: 20px 22px;
  margin: 24px 0;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.2s ease;
  position: relative;
  max-width: 680px;
}
.tool-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px #000;
}

.tool-number {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 8px;
  border: 2px solid #000;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.tool-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.tool-tagline {
  font-size: 0.72rem;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tool-card p {
  font-size: 0.9rem !important;
  line-height: 1.7;
  margin-bottom: 10px !important;
}

.tip-box {
  background: #fffbea;
  border: 2px solid #000;
  border-left: 4px solid #ffcc00;
  padding: 8px 12px;
  font-size: 0.82rem;
  margin-top: 10px;
  box-shadow: 3px 3px 0 #000;
}

/* PULLQUOTE */
.pullquote {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  padding: 24px 20px;
  margin: 32px 0;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  background: #ffcc00;
  color: #000;
  max-width: 680px;
  box-shadow: 5px 5px 0 #000;
}

/* SAMMANFATTNINGSRUTA */
.summary-box {
  background: #323232;
  color: #f4f4f4;
  padding: 20px 24px;
  margin: 28px 0;
  border: 2px solid #000;
  box-shadow: 5px 5px 0 #000;
  max-width: 680px;
}
.summary-box h3 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffcc00;
  margin-bottom: 14px;
  border-bottom: 1px solid #555;
  padding-bottom: 8px;
}
.summary-box ul { list-style: none; padding: 0; }
.summary-box li {
  padding: 6px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid #444;
  color: #ccc;
}
.summary-box li:last-child { border-bottom: none; }
.summary-box li::before { content: "→ "; color: #ffcc00; font-weight: 700; }

/* CTA */
.cta-section {
  text-align: center;
  padding: 32px 20px;
  border-top: 2px solid #000;
  margin-top: 32px;
  max-width: 680px;
}
.cta-section h3 { font-size: 1.1rem; margin-bottom: 8px; }
.cta-section p { color: #666; margin-bottom: 16px; font-size: 0.9rem; }

.cta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIV */
@media (max-width: 700px) {
  .container { flex-direction: column; }
  .left-column { width: 100%; min-width: unset; }
  .right-column { padding: 24px 18px; }
}

/* ── SIDFOT ── */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.75rem;
  color: #888;
  border-top: 2px solid #000;
}

.affiliate-sidebar {
  width: 180px;
  min-width: 180px;
  background-color: #323232;
  display: flex;
  flex-direction: column;
  border-left: 2px solid #000;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  overflow: hidden;
}
.sidebar-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffcc00;
  padding: 10px 12px 8px;
  border-bottom: 2px solid #000;
  background-color: #1a1a1a;
}
.progress-bar {
  height: 4px;
  background: #1a1a1a;
  border-bottom: 1px solid #000;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: #ffcc00;
  transition: none;
}
.progress-fill.animating {
  transition: width 10s linear;
  width: 100%;
}
.cards-viewport {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.ad-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  gap: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.ad-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.ad-card.exit {
  opacity: 0;
  transform: translateY(-20px);
}
.card-badge {
  display: inline-block;
  background: #111;
  color: #ffcc00;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 2px solid #000;
}
.card-icon {
  width: 56px;
  height: 56px;
  background: #1a1a1a;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.card-title {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f4f4f4;
  line-height: 1.3;
}
.card-desc {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.68rem;
  color: darkgrey;
  line-height: 1.5;
}
.card-cta {
  display: inline-block;
  margin-top: 4px;
  padding: 7px 12px;
  background-color: #ffcc00;
  color: #000;
  text-decoration: none;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: 0.65rem;
  border: 2px solid #000;
  border-radius: 0;
  box-shadow: 3px 3px 0 #000;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.card-cta:hover {
  background-color: #ffdb4d;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
}
.card-cta:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 #000;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
  border-top: 2px solid #000;
  background-color: #1a1a1a;
}
.dot {
  width: 8px;
  height: 8px;
  background: #444;
  border: 1px solid #000;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dot.active {
  background: #ffcc00;
  transform: scale(1.2);
}
.dot:hover {
  background: #ffdb4d;
}

/* ============================================
   AFFILIATE POPUP (MODAL)
   ============================================ */

/* Mörklägger hela bakgrunden */
.modal {
  display: none; /* Dold som standard, JS visar den */
  position: fixed;
  z-index: 9999; /* Ligger över precis allt, inkl tickern */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Mörkt transparent */
  align-items: center;
  justify-content: center;
}

/* Själva popup-boxen - matchar din sajt! */
.modal-content {
  background-color: #fff;
  border: 2px solid #000;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 6px 6px 0px #000; /* Din signaturskugga */
  font-family: 'Courier New', Courier, monospace;
}

/* Övre listen i fönstret */
.modal-header {
  background-color: #1a1a1a;
  color: #ffcc00;
  padding: 10px 14px;
  border-bottom: 2px solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* Krysset för att stänga */
.close-btn {
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  line-height: 1;
}
.close-btn:hover {
  color: #ffcc00;
}

/* Brödtexten inuti */
.modal-body {
  padding: 24px;
  text-align: left;
}

.modal-body p {
  font-size: 0.85rem;
  color: #111;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Knapp i samma stil som din .back-button */
.ok-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background-color: #ffcc00;
  color: #000;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: 0.8rem;
  border: 2px solid #000;
  border-radius: 0px;
  box-shadow: 4px 4px 0px #000; 
  cursor: pointer;
  transition: all 0.2s ease;
}

.ok-btn:hover {
  background-color: #ffdb4d;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000;
}

.ok-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px #000;
}


  .term-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
  }
  .term-modal-overlay.open { display: flex; }
  .term-modal {
    width: 90%;
    max-width: 560px;
    max-height: 80vh;
    background-color: #111318;
    border: 2px solid #000;
    border-radius: 8px;
    box-shadow: 6px 6px 0px #000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
    animation: modal-drop 0.18s ease;
  }
  @keyframes modal-drop {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .term-modal-header {
    background-color: #323232;
    border-bottom: 2px solid #000;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .term-modal-btns { display: flex; gap: 6px; align-items: center; }
  .term-modal-title {
    color: darkgrey;
    font-size: 0.75rem;
    margin-left: 6px;
    letter-spacing: 0.05em;
    flex: 1;
  }
  .term-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    line-height: 1.6;
    font-size: 0.85rem;
    color: #e6edf3;
    scrollbar-width: thin;
    scrollbar-color: #ffcc00 #1a1a1a;
  }
  .term-modal-body::-webkit-scrollbar       { width: 6px; }
  .term-modal-body::-webkit-scrollbar-track { background: #1a1a1a; }
  .term-modal-body::-webkit-scrollbar-thumb { background: #ffcc00; }
  .term-modal-body p { margin: 0 0 14px 0; color: #e6edf3; }
  .term-modal-output { color: #ffcc00; padding-left: 16px; margin: 0 0 16px 0; }
  .term-modal-output a { color: #27c93f; text-decoration: none; }
  .term-modal-output a:hover { text-decoration: underline; }
  .term-modal-divider { border: none; border-top: 1px solid #2a2a2a; margin: 16px 0; }
  .term-modal-footer {
    background-color: #1a1a1a;
    border-top: 2px solid #000;
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
  }
  .term-modal-status { font-size: 0.72rem; color: #555; letter-spacing: 0.05em; }
  .term-modal-close-btn {
    padding: 6px 16px;
    background-color: #ffcc00;
    color: #000;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    font-size: 0.75rem;
    border: 2px solid #000;
    border-radius: 0;
    box-shadow: 3px 3px 0px #000;
    cursor: pointer;
    transition: all 0.15s ease;
  }
  .term-modal-close-btn:hover {
    background-color: #ffdb4d;
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0 #000;
  }
  .term-modal-close-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 #000;
  }

/* ============================================
   DARK MODE
   ============================================ */
body.dark-mode {
  background-color: #0d1117;
  color: #e6edf3;
}
body.dark-mode a { color: #e6edf3; }
body.dark-mode a:visited { color: #c9d1d9; }

body.dark-mode .right-column {
  background-color: #161b22;
  color: #e6edf3;
}
body.dark-mode .right-projects .right-column {
  background-color: #1c2128;
}
body.dark-mode .hero-section {
  color: #e6edf3;
}
body.dark-mode .project-item h2 {
  color: #e6edf3;
}
body.dark-mode .project-item p {
  color: #c9d1d9;
}
body.dark-mode .intro-text {
  color: #8b949e;
  border-left-color: #30363d;
}
body.dark-mode .modal-content {
  background-color: #161b22;
}
body.dark-mode .modal-body p {
  color: #e6edf3;
}
body.dark-mode .tool-card {
  background: #1c2128;
  color: #e6edf3;
}
body.dark-mode .tip-box {
  background: #1c2128;
  color: #e6edf3;
}
body.dark-mode .input-field {
  background-color: #1c2128;
  color: #e6edf3;
  border-color: #30363d;
}

/* Dark mode-knapp (flytande, nedre högra hörnet) */
#darkModeToggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  margin: 0;
  font-size: 0.75rem;
  padding: 8px 16px;
  font-family: 'Courier New', Courier, monospace;
  cursor: pointer;
}
