/* Make everything look like a terminal */
:root {
    --md-default-fg-color: #00ff41; /* Hacker Green Text */
    --md-default-bg-color: #0d1117; /* Deep Black/Blue Background */
    --md-code-bg-color: #161b22;
  }
  
/* 1. Keep Buttons and Cards perfectly square (The "Terminal" look) */
.md-button,
.md-card {
  border-radius: 0px !important;
}

/* 2. Give Code Blocks slightly rounded corners */
.md-typeset pre, 
.md-typeset code {
  border-radius: 12px !important;  /* Change 8px to 12px for even rounder */
}

  /* Force the copy button to be always 100% visible (no fading) */
.md-code__button {
  opacity: 1 !important;        /* Stop it from being transparent */
  color: #ffffff !important;    /* Force it to be your Hacker Green */
  background: transparent;      /* Ensure no weird background boxes */
}

/* Optional: Make it turn white when you hover over it */
.md-code__button:hover {
  color: #00ff41 !important;
}
  
  /* Optional: Add a subtle glowing text effect */
  body {
    text-shadow: 0 0 2px rgba(0, 255, 65, 0.3);
  }