:root  > * {
    /* Custom color variables */
    --climate-calling-green:      #226e45;
    --climate-calling-yellow:     #e6b247;
    
    /* Material for MkDocs variables using our custom colors */
    --md-primary-fg-color:        var(--climate-calling-green);
    --md-accent-fg-color:         var(--climate-calling-yellow);
    /* --md-primary-fg-color--light: #ECB7B7;
    --md-primary-fg-color--dark:  #90030C; */
  }

/* Styled ordered lists with circular numbered bullets - only in main content */
.md-content ol {
    counter-reset: list-counter;
    list-style: none;
    padding-left: 0;
}

.md-content ol > li {
    position: relative;
    padding-left: 2.5em;
    margin-bottom: 0.5em;
    counter-increment: list-counter;
}

.md-content ol > li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8em;
    height: 1.8em;
    background-color: var(--climate-calling-yellow);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
    line-height: 1;
}

/* Styled unordered lists with custom bullet points - only in main content */
.md-content ul {
    padding-left: 1.5em;
}

.md-content ul > li {
    position: relative;
    margin-bottom: 0.5em;
    list-style: none;
    padding-left: 1em;
}

.md-content ul > li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--climate-calling-green);
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

/* Nested unordered lists inside ordered lists - ensure they show bullets not numbers */
.md-content ol ul > li::before {
    content: "•";
    background-color: transparent;
    color: var(--climate-calling-green);
    width: auto;
    height: auto;
    border-radius: 0;
}

/* Underline links in main content */
.md-content a {
    text-decoration: underline;
}

.md-content a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Image styling with rounded borders and consistent height */
img {
    display: block;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    max-height: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 20px 0;
}

/* Label/Badge styling */
.label {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    margin-right: 8px;
    margin-bottom: 4px;
    line-height: 1;
}

/* Default label styling */
.label {
    background-color: #989898;
    color: white;
}

/* Specific label types */
.label-new-feature {
    background-color: #f59e0b; /* Switched to feature improvement color */
    color: white;
}

.label-bug-fix {
    background-color: #6b46c1;
    color: white;
}

.label-feature-improvement {
    background-color: #10b981; /* Switched to new feature color */
    color: white;
}

.label-security {
    background-color: #fce029;
    color: white;
}

.label-performance {
    background-color: #06b6d4;
    color: white;
}

.label-user-experience {
    background-color: #2cc848;
    color: white;
}