body {
    display: flex;
    flex-direction: column;
    /* max-width has to be set to avoid deutschlandtickets from overriding in deutschlandticket.html/handleModal */
    max-width: 100% !important;
}

header {
    background-color: #f8f9fa;
    padding: 20px;
}

.sidebar {
    height: 93vh !important;
    padding: 0 !important;
    background-color: #f8f9fa;
    width: 200px;
    height: 100vh;
}

.container {
    display: flex;
}

.content {
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow: auto;
    flex: 1;
    height: 93vh;
}

.active {
    font-weight: bold;
}

.banner {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

.check-icon {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 90%);
    font-size: 24px;
    color: #63DCAE;
    background-color: white;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    visibility: hidden;
}

.icon-transform {
    transform: translate(-2px, -3px);
}

.card.selected .check-icon {
    visibility: visible;
}

.mobility-checkable-card {
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;

    &:hover {
        background-color: rgba(128, 128, 128, 10%);
    }
}

.mobility-card {
    height: 80px;
    width: 80px;
}

.issue-accepted-stroke {
    border-bottom: 2px solid #63DCAE;
    margin-bottom: 8px;
    flex: 1;
}
.issue-pending-stroke {
    border-bottom: 2px solid #FFD700;
    margin-bottom: 8px;
    flex: 1;
}
.issue-declined-stroke {
    border-bottom: 2px solid #DC3545;
    margin-bottom: 8px;
    flex: 1;
}

.star-rating {
    font-size: 2em;
    cursor: pointer;
    display: flex;
}

.star {
    color: #D9D9D9;
    font-size: 2.5rem !important;
}

.star.selected {
    color: #DCE004;
}


.results tr[visible='false'],
.no-result {
    display: none;
}

.results tr[visible='true'] {
    display: table-row;
}

.counter {
    padding: 8px;
    color: #ccc;
}

.summary-border {
    border-bottom: 2px solid black;
    width: 80%;
}

.div-location-icon {
    background: transparent;
    border: none;
}

.collapse-filters-button:not(.collapsed) .show-text {
    display: none;
}
.collapse-filters-button.collapsed .show-text {
    display: inline;
}
.collapse-filters-button:not(.collapsed) .hide-text {
    display: inline;
}
.collapse-filters-button.collapsed .hide-text {
    display: none;
}
.collapse-filters-container.show, .collapse-filters-container.collapsing {
    display: flex;
    flex-wrap: wrap;
}

.template-card {
    padding: 4rem 1.2rem;
    max-width: 8.6rem;
    height: 30%;
    max-height: 150px;
}

.template-card > a {
    color: initial;
}

.template-card-label {
    font-size: small;
    word-wrap: anywhere;
}

.card-part {
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;

    &:hover {
        background-color: rgba(128, 128, 128, 10%);
    }
}

.card-part-disabled {
    cursor: not-allowed;
    color: rgb(210, 210, 210);
}
