html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    --position-accent: #78ab55;
    --route-accent: #589cd1;
    --radius-accent: #e55934;
    --bg: #1e1f22;
    --card-bg: #2a2c30;
    --text: #e6e6e6;
    --text-muted: #a0a0a0;
}

#map {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 0;
    top: 0px;
    left: 0px;
}


.entry.position {
    border-color: var(--position-accent);
}

.entry.route {
    border-color: var(--route-accent);
}

.entry.route:hover {
    border-color: oklch(from var(--route-accent) calc(l + 0.1) c h);
}

.entry.position:hover {
    border-color: oklch(from var(--position-accent) calc(l + 0.1) c h);
}

/* Titel */
.entry h4 {
    margin: 0 0 0.375em;
    font-size: 1.1rem;
}

.entry.position h4 {
    color: var(--position-accent);
}

.entry.route h4 {
    color: var(--route-accent);
}

/* Text */
.entry p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-wrap: balance;
}

/* Container */
.list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: auto;
    padding: 0 1rem;
}

.list-container {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* desktop zeug hier */
@media screen and (min-width: 1000px) {

    .list-container {
        position: absolute;
        top: 1rex;
        right: 1rex;
        max-width: 70vw;
        max-height: 50vh;
    }

    .list-header {
        display: none;
    }

    .entry {
        background-color: var(--card-bg);
        border-radius: 0.625rem;
        border-width: 0.125rem;
        border-left-width: 0.25rem;
        border-style: solid;
        padding: 1rem 1.125rem;
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
    }

    .entry:hover {
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, 0.4);
    }

}

/* mobiles zeug hier */
@media screen and (max-width: 1000px) {

    .list-container {
        position: relative;
        width: 90%;
        gap: 0.1rem;
        height: fit-content;
        top: 90vh;
        overflow: scroll;
    }

    .list-header {
        width: fit-content;
        font-size: 2.2rem;
        text-align: center;
        color: var(--radius-accent);
        background-color: var(--card-bg);
        border-top-right-radius: 0.625rem;
        border-top-left-radius: 0.625rem;
        border-color: var(--radius-accent);
        border-width: 0.0rem;
        border-top-width: 0.75rem;
        border-style: solid;
        padding: 0.75rem 10rem;
        margin: 0;

        >h4 {
            margin: 0;
        }
    }


    .entry {
        background-color: var(--card-bg);
        border-top-left-radius: 0.625rem;
        border-bottom-left-radius: 0.625rem;
        border-width: 0;
        border-left-width: 0.5rem;
        border-style: solid;
        padding: 1rem 1.125rem;
        position: relative;
        text-align: left;

        h4 {
            font-size: 2.2rem;
        }

        p {
            font-size: 1.9rem;
        }
    }
}