/* 1. Force the colors globally */
:root {
  --pico-background-color: #0d1117 !important;
  --pico-card-background-color: #161b22 !important;
  --pico-color: #00ff41 !important; /* This forces general text to green */
  
  /* Primary Green accents */
  --pico-primary: #00ff41 !important;
  --pico-primary-hover: #00ff41 !important;
}

/* 2. Force the Body */
body {
  background-color: var(--pico-background-color) !important;
  color: var(--pico-color) !important;
}

/* 3. Force all headings and strong text to be Green */
h1, h2, h3, h4, h5, h6, strong, a, li {
  color: #00ff41 !important;
}

/* 4. Style the Cards */
article {
  background-color: var(--pico-card-background-color) !important;
  border: 1px solid #00ff41 !important; /* Green border for the cards */
  color: #00ff41 !important;
}

/* 5. Navigation links */
nav a {
  color: #00ff41 !important;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}
/* Style for certification lists */
.cert-list {
  list-style-type: none; /* Removes Pico's default bullet points */
  padding-left: 0;
}

.cert-list li {
  margin-bottom: 0.5rem;
}

/* Verification Layout alignment */
.verify-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Verification Icon Style */
.verify-icon {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  fill: #005a43; /* Clean credential verification green */
  vertical-align: middle;
  transition: transform 0.2s ease;
}

/* Hover micro-interaction */
.verify-link:hover .verify-icon {
  transform: scale(1.15);
}
