/* ----------------------- Changelog -----------------------*/

#changelog-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: none !important;
}

#latestVersion {
    transition: none !important;
}
.changelog {
    transition: none !important;
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 24px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    transition: none !important;
    h2 {
        font-size: 22px;
    }
    i {
        font-size: 24px;
    }
}
.changelog-content {
    max-height: 300px;
    transition: none !important;
    h3 {
        margin-bottom: 4px;
        transition: none !important;
    }
    ul {
        line-height: 1.5;
        padding: 0 24px;
        transition: none !important;
        margin-bottom: 12px;
    }
    li {
        transition: none !important;
    }
    p {
        transition: none !important;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 18px;
        margin-top: 16px;
    }
}
.changelog-item {
    max-height: 200px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--background-color);
}

.no-scroll {
    overflow: hidden;
}

/* ----------------------- Changelog End -----------------------*/