body {
    background-color: #121212;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#busStopsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: flex-start;
    align-items: flex-start;
}

table {
    border-collapse: separate;
    background-color: #1E1E1E;
    border-spacing: 0;
    border-radius: .5em;
    overflow: hidden;
    color: white;

}

th {
    background-color: #2A2A2A;
    color: white;
    padding: 10px;
    font-size: 1.2em;
}
/* 
th:nth-child(1) {
    width: 32px;
}

th:nth-child(2) {
}

th:nth-child(3) {
    width: 48px;
} */

th sup{
    color: rgb(167, 167, 167);
    font-size: small;
    font-style: italic;
}

td {
    padding: 10px;
    height: 30px;
    border-top: 1px solid #3C3C3C;
    border-bottom: 1px solid #3C3C3C;
}

#config_container {
    background-color: #1E1E1E;
    color: white;
}

#busLine {
    background-color: #75daad;
    border-radius: .5em;
    color: black;
    font-weight: bold;
}

#config_menu {
    position: absolute;
    top: 15px;
    left: 15px;
}

details.noarrow summary::marker {
    content: none;
}

details.noarrow summary::-webkit-details-marker {
    display: none;
}

details.noarrow summary {
    opacity: 50%;
    list-style: none;
    cursor: pointer;

}

details.noarrow summary:hover {
    cursor: pointer;
}

details textarea {
    font-size: large;
    width: 480px;
    height: 640px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

summary::after {
    content: "⚙️";
    margin-left: 8px;
    font-size: 0.9em;
}

details[open] summary::after {
    content: "✖";
}


/* textarea::-webkit-scrollbar {
    width: 10px;
}

textarea::-webkit-scrollbar-track {
    background: #1d112b;
}

textarea::-webkit-scrollbar-thumb {
    background: #1d112b;
    border: 2px solid #421b5a;
}

textarea::-webkit-scrollbar-thumb:hover {
    background: #452c5a;
} */
