/* DONT ASK WHATS THAT FOR A HURTING CRAP!
 * it's just what happens when I try to do CSS :(
 *
 * If you really nead to now what all those classes do, feel free to ask me,
 * otherwise just add another class, nobody cares hahahahahaha
 */

@import url('https://fonts.googleapis.com/css2?family=Kode+Mono&display=swap');


:root {
    --switch-color: #5F5F5F;
    --switch-bg-color: #f0f0f0;
    --disabled-color: #787878;
    --cellpadding: 15px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Twemoji Country Flags", "Kode Mono", monospace;
    font-size: 20px;
    margin: 0px;
    overflow-x: clip;
    background-color: #fff;
    color: #000;
    background-image: url('https://cdn.pixabay.com/photo/2020/08/09/14/25/business-5475664_1280.jpg');

}

.button {
    background-color: #000;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 17px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.home {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #000;
    text-align: center;
    color: #fff;
}

.searchcontainer {
    width: 85%;
    max-width: 700px;
    background-color: rgba(38,38,38,0.8);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    color: #fff;
    border-radius: 20px;
    overflow-y: hidden;
}

.nameholder {
    width: 85%;
    max-width: 700px;
    text-align: left;
    font-size: 25px;
    font-weight: bold;
    margin: 10px;
    text-shadow: 0px 0px 20px #000;
}

.logo {
    height: 30px;
    margin-right: 18px;
    border: solid 1px #fff;
    border-radius: 13px;
}

.versionicon {
    height: 100px;
    max-width: 70vw;
    margin-top: 13%;
    box-shadow: 0px 0px 30px #3e3e3e;
    border-radius: 30px;
    
}


.tripcontainer, .blanktext {
    border-radius: 5px;
    overflow-y: hidden;
    text-align: left;
    width: 90% !important;

}

.popuptext {
    border-radius: 5px;
    overflow-y: hidden;
    text-align: left;
    width: 100%;

}

.searchbar {
    font-size: 20px;
    border: none;
    font-family: "Kode Mono", monospace;
    height: 40px;
    background-image: url('../icons/search.svg');
    background-size: 25px;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 40px;
    margin: 17px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
}

.datebar {
    background-image: url('../icons/calendar.svg')!important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

.leftcorners {
    border-radius: 10px 0px 0px 10px;
}

.rightcorners {
    border-radius: 0px 10px 10px 0px;
}

.searchbar:focus {
    outline: none;
}


input[type="radio"] {
    display: none;
}

::-webkit-scrollbar {
    display: none;
}

.container {
    display: flex;
    flex-wrap: wrap;
}

.left-div {
    flex: 1;
    min-width: 200px;
    margin-left: 20px;
}

.right-div {
    flex: 1;
    order: -1; /* Ändert die Reihenfolge, um nach oben zu gehen */
}

.lineview {
    max-width: 250px;
}

table {
    border: none;
    border-spacing: 0px;
    width: 100%;
}

.pureTable {
    border: initial;
    border-spacing: initial;
    width: auto;
}


tr {
    font-weight: bold;
}

th {
    font-weight: normal;
    padding: var(--cellpadding);
    text-align: left;
}

.tdPure {
    vertical-align: center;
}

td {
    vertical-align: top;
    a {
        color: #000;
        display: block;
        margin: 0;
        padding: var(--cellpadding);
    }
}

.wide {
    width: 100% !important;
}

.header, tr:nth-child(even) {
    background-color: #D9D9D9;
}

.header {
    font-size: 15px;
}

.mini {
    height: 35px;
    padding-right: 15px;
}

.suggestion {
    display: flex;
    justify-content: space-between;
    padding: 17px; /* Optional padding for spacing */
    cursor: pointer;
    color: #fff;
}

.topline {
    vertical-align: middle;
    padding: 0px;
}

.toggle-label {
    padding: 8px 10px 8px 10px;
}

.suggestion:hover {
    background-color: #ffffff11;
}

@media (max-width: 700px) {
    
    .popuplinks {
        right: 7.5%;
        top: 93px;
    }

    .searchbar {
        margin-top: 13px;
        width: -webkit-fill-available;
    }

    .navsearch {
        font-size: 0;
    }

    h2 {
        display: none;
    }

    th {
        /* padding: 10px;*/
    }

    td {
        font-size: 15px;

    }

    .bigonly {
        display: none;
    }


    .smallonly {
        display: inline;
    }

}