/* Release notes, Button Zukunft*/
.list-release-notes li {
    padding: 0px !important;
}

.border-version {
    position: relative;
    border: 1px solid #C4C4C4;
    border-radius: 5px;
    padding: 20px;
    margin: 20px;
}

    .border-version.current:first-of-type::before {
        border: 1px solid #C4C4C4;
        border-radius: 5px;
        content: "aktuell";
        position: absolute;
        top: -15px;
        Position above the border left: 90%;
        background-color: var(--og-color-blue-obergericht);
        padding: 5px 10px;
        font-weight: bold;
        font-size: 14px;
        color: white;
    }

    .border-version:hover {
        box-shadow: 5px 5px 10px 7px #ccc;
    }

.list-future-notes li,
.list-user-notes li {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: inherit !important;
    padding-right: inherit !important;
}

.modal-dialog-centered {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height to allow vertical centering */
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    max-height: 90%;
    pointer-events: auto;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

    /* Styles */
    .modal-content b {
        color: black;
    }

    .modal-content li {
        color: var(--og-color-text);
        list-style-type: square;
        padding: 0 7.5px !important;
    }

    /* Exclude bullets vor nav bar */
    .modal-content ul.nav.nav-tabs li {
        color: initial; 
        list-style-type: none; 
        padding: initial; 
    }

    .modal-content.dialog-release-notes {
        min-width: 500px;
        max-width: 1000px;
    }

/* Remove accordion item border in release notes */
.border-version .accordion-item {
    border: none;
}

.border-version .accordion-button {
    border: none;
    box-shadow: none;
}