body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 !important;
    color: white;
    background-color: hsla(195,86.2745098%,20%);
}
.search-form {
    width: 575px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-line {
    display: flex;
    justify-content: space-between;
}
#leg-form {
    display: none;
}
label {
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 5px;
    width: 175px;
}
.search-button {
    width: 175px;
    margin-top: 10px;
}

table {
    margin-left: 10px;
}

#leg-button {
    margin-bottom: 20px;
}

.results-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    color: white;
}

.line {
    background-color: white;
    width: 75%;
    height: 1px;
    margin-bottom: 10px;
    margin-top: 50px;
}

#leg-button {
    background-color: white;
    padding: 5px;
    border: none;
}

#leg-button:hover {
    cursor: pointer;
    background-color: white;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.3);
}

#search-button {
    background-color: white;
    padding: 20px;
    font-size: large;
    border: none;
}
#search-button:hover {
    background-color: white;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.3);
    cursor: pointer;
}

.results {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 10px;
    width: 600px;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result {
    box-shadow: 4px 4px 4px rgba(0,0,0,0.3);
    color: black;
    background-color: white;
    padding: 10px;
    margin: 5px;
    width: 700px;
}
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.price {
}
.link-button {
    padding: 10px;
    font-weight: bold;
    border-radius: 10px;
    background-color: white;
    color: black;
}
.link-button:hover {
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}
.price-value {
    font-size: large;
}
.price-label {
    font-size: x-small;
}
.fareId-label {
    font-size: x-small;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
label {
    font-size: small;
}
select {
    width: 92%;
    padding: 5px;
}
input {
    padding: 5px;
    width: 92%;
}
.loading-container {
    margin:20px;
}

::placeholder { /* Most modern browsers support this now. */
    color: lightgray;
    opacity: 1; /* Firefox uses opacity instead of color. */
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: lightgray;
}

::-moz-placeholder { /* Firefox 18- */
    color: lightgray;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: lightgray;
}

:-moz-placeholder { /* Firefox 4-17 */
    color: lightgray;
    opacity: 1;
}