/* Styling for the weekly notes list */
#content ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 1.5em;
}

#content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8em;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

#content ul li::before {
    content: "▶";
    color: white;
    font-size: 0.8em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}

/* Styling for the links directly inside the list item */
#content ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(1.2rem, 1.5vw, 1.2rem);
}

#content ul li a:hover {
    color: #E0E0E0;
    text-decoration: underline;
}

/* Media query for smaller screens, if blogdetails padding changes it */
@media(min-width: 300px){
    #content ul {
        margin-left: 0;
    }
}