/* ===================================================================
   DATABASE/COMPONENTS/CHANGELOG.CSS
   Changelog Markdown Styling
   =================================================================== */

#changelog-content h2 {
    color: #0088cc;
    border-bottom: 2px solid #0088cc;
    padding-bottom: 0.5rem;
    padding-left: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

#changelog-content h3 {
    color: #1abc9c;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

#changelog-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

#changelog-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

#changelog-content ul li::before {
    content: "•";
    color: #0088cc;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

#changelog-content code {
    background: rgba(0, 136, 204, 0.2);
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #00b4d8;
}

#changelog-content a {
    color: #00b4d8;
    text-decoration: none;
}

#changelog-content a:hover {
    text-decoration: underline;
}

#changelog-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

#changelog-content strong {
    color: #fff;
    font-weight: 600;
}

#changelog-content em {
    font-style: italic;
    color: #e9ecef;
}

#changelog-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}
