@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;800;900&display=swap');
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: rgb(66, 66, 66);
}

h1 {
    text-align: left !important;
    font-weight: 500;
    font-size: 70px;
    color: white;
}

h2 {
    text-align: left !important;
    font-weight: 400;
    font-size: 45px;
    color: white;
}

h3 {
    /* text-align: left; */
    font-weight: 300;
    font-size: 40px;
    color: white;
}

div {
    padding: 0 !important;
    /* margin: 0; */
}

:root {
    --sidebar-width: 40vw;
    --race-container-width: 98vw;
    --track-car-height: 400px;
}


.thumbnail {
    display: none;
}

.btn-banned, .btn-history {
    font-size: 14px;
    padding: 6px 10px;
    background: none;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
}

.btn-banned {
    border: 1px solid #ff4b4b;
    color: #ff4b4b;
}

.btn-banned:hover {
    background: #ff4b4b;
    color: #ffffff;
    transform: scale(1.05);
    opacity: 0.9;

}


.btn-history {
    border: 1px solid #ffaa33;
    color: #ffaa33;
}

.btn-history:hover {
    background: #ffaa33;
    color: #ffffff;
    transform: scale(1.05);
    opacity: 0.9;

}

.btn-total-drivers {
    font-size: 17px;
    padding: 6px 12px;
    background: none;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-align: center;
    border: 1px solid #ffaa33;
    color: white;
    cursor: pointer;
}

.btn-total-drivers .total-label {
    font-size: 18px;
    font-weight: normal;
}

.btn-total-drivers .total-number {
    font-size: 22px;
//    font-weight: bold;
    color: yellow;
}
.btn-total-drivers:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.btn-total-drivers.active {
    background: #aaaaaa;
    color: white;
    border: 1px solid #ffaa33;
}

.btn-total-drivers.active .total-number {
    color: yellow;
}

@media only screen and (max-width: 1200px) {
    :root {
        --sidebar-width: 50vw;
        --track-car-height: 250px;
    }
    .thumbnail {
        display: none;
    }
    .server-details {
        height: 12vh;
    }
    .race-data {
        height: 140px;
    }
    #slide {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
    }
    /*#slide {
        height: calc(100vh - var(--sidebar-header-height)) !important;
    }*/
    #sidebar-track-details {
        height: 9vh !important;
        margin-bottom: 6vh;
    }
    #sidebar-track-logo {
        display:flex !important;
        flex: 0 !important;
    }
    #sidebar-classes {
        width: 90% !important;
        left: 5% !important;
    }
/*    #sidebar-races-completed {
        display: none !important;
        flex: 0 !important;
    }*/
    .driver-country {
        margin-right: 0px !important;
    }
}

@media screen and (max-width: 400px) {
    #sidebar-track-map {
        display: none !important;
        flex: 0 !important;
    }
}

@media only screen and (max-width: 579px) {
    :root {
        --race-container-width: 98vw !important;
    }
}

@media screen and (max-width: 850px) {
    .auto-refresh h3 {
        font-size: 25px !important;
        font-weight: 400;
        margin-top: 5px !important;
    }
}

@media only screen and (max-width: 1120px) {
    :root {
        --sidebar-width: 100vw;
    }
    #sidebar-footer {
        display: flex !important;
        height: auto !important;
        padding: 0px;
         margin-top: 0;
    }
     #sidebar-footer button {
        font-size: 23px !important;  
    }
    
    #qualify-message {
        font-size: 16px !important;   
        padding: 4px 8px !important;
    }
}


@media only screen and (min-width: 580px) and (max-width: 900px) {
    :root {
        --race-container-width: 47vw !important;
    }
}

@media only screen and (min-width: 901px) and (max-width: 1169px) {
    :root {
        --race-container-width: 31.33vw !important;
    }
}

@media only screen and (min-width: 1170px) and (max-width: 1580px) {
    :root {
        --race-container-width: 23vw !important;
        --track-car-height: 230px;
    }
}

@media only screen and (min-width: 1581px) and (max-width: 2039px) {
    :root {
        --race-container-width: 18vw;
        --track-car-height: 250px;
    }
}

@media only screen and (min-width: 2040px) and (max-width: 2469px) {
    :root {
        --race-container-width: 18vw;
        --track-car-height: 230px;
    }
}

@media only screen and (min-width: 2470px) {
    :root {
        --race-container-width: 13.4vw;
        --track-car-height: 200px;
    }

    .race-container {
        margin: 0.5vw !important;
    }
}


#race-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.sidebar-track-logo {
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

.sidebar-track-logo:hover {
    transform: scale(1.15);
}

.sidebar-track-map {
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

.sidebar-track-map:hover {
    transform: scale(1.15);
}
.sidebar .class-img {
    transition: transform 0.2s ease-in-out;
}

.sidebar .class-img:hover {
    transform: scale(1.15); 
    cursor: pointer;    
}
.invisible {
    display: none !important;
}

.race-container {
    background-color: rgb(19, 19, 19);
    color: white;
    padding: 0px;
    padding-right: 20px;
    margin: 1vw;
    box-shadow: 5px 5px 50px rgb(14, 14, 14);
    transition: transform 0.3s;
    width: calc(var(--race-container-width) - 12px);
}

.race-container:hover {
    cursor: pointer;
    transform: scale(1.01);
}

.race-container h2 {
    font-weight: 400;
    font-size: calc((var(--race-container-width) - 12px) / 20);
    margin: 0 !important;
}

.race-container p {
    margin-top: 20px;
    color: rgb(99, 99, 99);
    font-weight: 500;
    font-size: 100%;
}



.thumbnail {
    flex: 1;
}

.server-details {
    flex: 2;
}

.name-level {
    width: calc(100% - 10px);
    margin-top: 10px;
    height: 40px;
    display: inline-flex;
    align-items: center;
/*    justify-content: space-between;*/
    justify-content: center;

}

.level-img {
    height: 40%;
/*    height: 80%;*/
}

.countdown p {
    font-size: 120% !important;
}


/* Search tools: */

#search-tools-wrapper {
    font-size: 25px;
    background-color: rgb(255, 255, 255);
    padding: 1vh !important;
    border-radius: 5px;
    min-height: 5vh;
    margin: 20px;
    display: inline-block;
    position: relative;
    box-shadow: 5px 5px 50px rgb(22, 22, 22);
    /* display : flex; */
    /* align-items : center; */
    /* max-width: 1000px; */
}

#search-tools {
    align-items: center;
}

#search-tools label {
    display: flex;
    align-items: center;
}

.search-tool {
    display: flex;
    margin: 5px;
    float: left;
}

.dropdown {
    margin-right: 20px;
    margin-left: 10px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 130px;
    height: 30px;
    background: #d8d8d8;
    border: 0px solid;
    border-radius: 3px;
}

.dropdown:before,
.dropdown:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 9px;
    right: 10px;
    width: 0;
    height: 0;
    border: 4px dashed;
    border-color: #888888 transparent;
    pointer-events: none;
}

.dropdown:before {
    border-bottom-style: solid;
    border-top: none;
}

.dropdown:after {
    margin-top: 7px;
    border-top-style: solid;
    border-bottom: none;
}

.dropdown-select {
    position: absolute;
    vertical-align: middle;
    width: 130%;
    margin: 0;
    padding: 6px 8px 6px 10px;
    height: 100%;
    /* line-height: 14px; */
    font-size: 14px;
    color: #5c5c5c;
    /* text-shadow: 0 1px white; */
    background: #f2f2f2;
    /* Fallback for IE 8 */
    background: rgba(0, 0, 0, 0) !important;
    /* "transparent" doesn't work with Opera */
    border: 0;
    border-radius: 0;
    line-height: 18px
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;   
}

.dropdown-select:focus {
    z-index: 3;
    width: 100%;
    color: #394349;
    outline: none;
}

.dropdown-select>option {
    margin: 3px;
    font-size: 16px;
    padding: 6px 8px;
    text-shadow: none;
    background: #f2f2f2;
    border-radius: 3px;
    cursor: pointer;
}


#reverse-label {
    cursor: pointer;
    height: 100%;
}

#reverse-label img {
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 300ms;
    transition: all 300ms;
    width: 100%;
    height: 100%;
}

input {
    display: none;
}

:checked + img {
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
}

#search_icon:hover {
    cursor: pointer;
}




/* Fix for IE 8 putting the arrows behind the select element. */

.lt-ie9 .dropdown {
    z-index: 1;
}

.lt-ie9 .dropdown-select {
    z-index: -1;
}

.lt-ie9 .dropdown-select:focus {
    z-index: 3;
}


/* Dirty fix for Firefox adding padding where it shouldn't. */

@-moz-document url-prefix() {
    .dropdown-select {
        padding-left: 6px;
    }
}






/* Images: */

.car-icon {
    width: 35px;
    height: 45px;
    margin-top: 5px;
    margin-right: 7px;
}

.clock-icon {
    margin-top: 12px;
    margin-right: 8px;
    width: 31px;
    height: 35px;
}

.track-car {
    position: relative;
    width: 100%;
    height: var(--track-car-height);
}

.track-img {
    position: relative;
    margin: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.car-classes {
    display: flex;
    position: absolute;
    bottom: 0px;
    left: 5px;
    height: 48%;
    width: calc(100% - 10px);
    align-items: center;
    /* flex-flow: row wrap; */
}

.class-img {
    margin: 0px;
    flex: calc(1 / 10) 1 calc(10% - 0px);
    -webkit-filter: drop-shadow(2px 2px 8px rgb(50, 50, 50));
    filter: drop-shadow(2px 2px 8px rgb(50, 50, 50));
}

.logo-row-item {
    flex: 0 1 auto;
    max-height: 100%;
    max-width: 100%;
    min-height: 0;
    min-width: 0;
}

.track-logo {
    max-height: calc(100% - 30px);
    margin: 5px;
    background-color: white;
    padding: 5px;
    -webkit-filter: drop-shadow(2px 2px 8px rgb(50, 50, 50));
    filter: drop-shadow(2px 2px 8px rgb(50, 50, 50));
}

.twitch-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15%;
    -webkit-filter: drop-shadow(2px 2px 8px rgb(50, 50, 50));
    filter: drop-shadow(2px 2px 8px rgb(50, 50, 50));
}

.no-twitch {
    display: none;
}

.circle {
    left: 20px;
    bottom: 20px;
    background-color: white;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    min-width: 1.25em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18%;
    box-shadow: 1px 1px 50px rgb(71, 71, 71);
}

.circle:after {
    content: '';
    padding-top: 100%;
    display: table;
}

.driver-count {
    display: flex;
}

.session {
    margin-left: 10px;
    display: flex;
}


/* Countdown: */

.countdown {
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.countdown p {
    text-transform: uppercase;
}


/* Sidebar: */

.sidebar {
    /* display: none; */
    position: fixed;
    z-index: 10;
    width: var(--sidebar-width);
    height: 100%;
    right: calc(0px - var(--sidebar-width) - 25px);
    top: 0;
    background-color: black;
    box-shadow: 1px -2px 25px black;
    overflow: hidden;
    transition: right 0.5s;
}

.sidebar h2 {
    text-align: left !important;
    font-size: 30px;
}

.sidebar h3 {
    font-size: 20px;
}

#sidebar-track-details>h3 {
    text-align: left !important;
}

.sidebar-track-logo {
    background-color: white;
    /* width: 100%; */
    height: 100%;
    left: 0;
}

.sidebar-track-map {
    /* width: 100%; */
    height: 100%;
    right: 0;
}

.sidebar-section {
    background-color: rgb(60, 60, 60);
    border-radius: 5px;
    margin: 20px;
    padding: 30px !important;
}

.two-line-data {
    text-align: center !important;
    display: inline;
}

.sidebar-header {
    font-weight: 600;
}

#sidebar-refresh-ping:hover {
    cursor: pointer;
}

.link, .twitch-link {
    color:rgb(170, 170, 255);
}

.link:visited, .twitch-link:visited {
    color:rgb(170, 170, 255);
}

#sidebar-classes {
    text-align: center;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 60%;
    position: relative;
    left: 20%;
}

.sidebar .class-img {
    position: relative;
    bottom: auto;
    left: auto;
    vertical-align: middle;
    width: auto;
    height: 10vh;
    display: inline-block;
    margin: 5px;
}

.sidebar .track-img {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    object-fit: auto;
}

.close-button {
    position: relative;
    width: calc(20px + 4%);
    top: 20px;
    margin-bottom: 10px;
}

.close-button:hover {
    cursor: pointer;
}

.sidebar-driver-details {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px !important;
    padding-left: 0px !important;
    padding-bottom: 7px !important;
}

.sidebar-driver-details:hover {
    cursor: pointer;
}

.driver-line {
    display: flex;
}

.driver-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

#sidebar-max-drivers-text {
        white-space: nowrap;  /* Força o texto a ficar numa linha */
    }
#sidebar-footer {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: black;
}

#sidebar-footer button {
    color: white;
    background-color: black;
    font-size: 28px;
    border: none;
    width: auto;
    border-radius: 23px;
    outline: black solid 1px;
    transition: outline-color 0.15s;
}

#qualify-message {
    color: white;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
}

#sidebar-footer button:hover {
    cursor: pointer;
    outline: white solid 1px;
}


/*
height: 20px - close-button top,
        10px - close-button margin-bottom,
        44px - tabs div height,
        10px - tabs div margin-bottom,
        (20px + 4vw) - close-button height,
*/

:root {
    --sidebar-header-height: calc(20px + 10px + 20px + 44px + 10px + (20px + 4vw));
    --sidebar-footer-height: calc(12vh);
}


/* Tabs: */

.tabs {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
    display: inline-block;
}

.tab {
    height: 40px;
    width: 50%;
    border: none;
    line-height: 40px;
    text-align: center;
    font-size: 20pt;
    float: left;
    cursor: pointer;
    color: lightgray;
}

.selected {
    color: rgb(220, 220, 220);
    border-bottom: 4px solid white;
}

#container {
    position: relative;
    width: 4000px;
    height: 200px;
    overflow: hidden;
    clear: left;
}

.box {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    width: 400px;
    height: 200px;
    line-height: 200px;
    text-align: center;
    font-size: 20pt;
    cursor: pointer;
}

#general-info {
    flex: 1;
    top: 0px;
    left: 0px;
    overflow-x: hidden;
    overflow-y: auto;
}

#driver-info {
    flex: 1;
    top: 0px;
    left: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

#slide {
    width: 200%;
    height: calc(100vh - var(--sidebar-header-height) - var(--sidebar-footer-height));
    display: flex;
    /* overflow: hidden; */
    transition: transform 0.3s ease-in-out 0s;
    -moz-transition: -moz-transform 0.3s ease-in-out 0s;
    -webkit-transition: -webkit-transform 0.3s ease-in-out 0s;
}

.move-to-first {
    transform: translateX(0px);
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
}

.move-to-second {
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}


/* Auto-refresh toggle */


/* The switch - the box around the slider */

.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 23px;
}


/* Hide default HTML checkbox */

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


/* The slider */

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 36px;
    background-color: #ccc;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: left 0.2s;
    transition: left 0.2s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    /* -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px); */
    left: 18px;
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


.sidebar-team {
    position: relative;
}

.twitch-embed-container {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 20px;
    /* width: 100%; */
}

.twitch-embed {
    position: absolute;
    left: calc(-0.15 * var(--sidebar-width));
    top: 19px;
    width: calc(var(--sidebar-width) * 0.6);
    height: calc(var(--sidebar-width) * 0.6 / 1.77);
    transition: transform 0.2s;
    transform: scale(0,0);
    transform-origin: top;
}

.twitch-hover:hover .twitch-embed {
    z-index: 3;
    transform: scale(1,1);
}

.twitch-embed:hover {
    display: block;
}


.twitch-hover-expand {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15%;
    height: calc(var(--race-container-width) * 0.15);
}

.twitch-expand-appear {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 600%;
    height: calc(600% / 1.77);
    transform: scale(calc(1 / 6), calc(1.77 / 6));
    transform-origin: top right;
    transition: transform 0.2s;
    z-index: -1;
}

.twitch-hover-expand:hover .twitch-expand-appear {
    transform: scale(1, 1);
    z-index: 1;
}


.twitch-expand-disappear {
    z-index: 2;
    opacity: 1;
    top: 0px;
    right: 0px;
    width: 100%;

    transform: scale(1,1);
    transform-origin: top right;
    transition: opacity 0.1s, transform 0.2s;
}

.twitch-hover-expand:hover .twitch-expand-disappear {
    transform: scale(6, calc(6 / 1.77));
    opacity: 0;
}

.reload-servers {
    margin: 3px;
    margin-left: 25px;
    height: calc(100% - 6px);
    transition: opacity 0.15s;
}

.reload-servers:hover {
    opacity: 0.7;
    cursor: pointer;
}

#buy-me-a-coffee {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 15px;
    cursor: pointer;
    height: 35px;
    transition: filter 0.13s;
}

#buy-me-a-coffee:hover {
    filter: brightness(80%);
}

#buy-me-a-coffee img {
    height: 100%;
    border-radius: 15px;
}


.search-input {
    padding: 4px 8px;  
    border-radius: 4px;  
    border: 1px solid #ccc;
    background-color: #f2f2f2;
    color: #5c5c5c;
    font-size: 14px;  
    height: 20px;  
    width: 100px;  
    margin-left: 5px;  
    transition: all 0.2s ease;
    display: inline-block;
}

.search-input:focus {
    outline: none;
    border-color: #2196F3;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
}

.search-input::placeholder {
    color: #999;
    font-style: italic;
}

.ping-value {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    padding: 2px 12px;
    border-radius: 12px;
    min-width: 70px;
    background-color: rgb(19, 19, 19);
    text-align: center;
    transition: background-color 0.2s ease;
}
.ping-container:hover .ping-value {
    transform: scale(1.1);
}
.ping-value[data-status="loading"] {
    color:  color: rgb(99, 99, 99);;
}

.ping-value[data-status="good"] {
    color: #2E8B57;  
}

.ping-value[data-status="medium"] {
    color: #DAA520;  
}

.ping-value[data-status="bad"] {
    color: #B22222;  
}


.ping-value[data-status="error"] {
    color: rgb(99, 99, 99);
}
.ping-container {
    position: absolute;
    top: 32px;
    left: 0;
    right: -100px;
    display: flex;
    justify-content: center;
    z-index: 10;
    cursor: pointer;  
    width: fit-content;
    margin: 0 auto;
    height: fit-content;    
    padding: 0;
}

.ping-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 60%;
    transform: translateX(-50%);
    margin-top: 10px;
    background: gray;
    color: white;
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 13px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    transition: visibility 0.2s, opacity 0.2s;
    z-index: 20;
    pointer-events: none;
    
    width: max-content;        
    max-width: none;         
    min-width: 200px;          
    white-space: nowrap;       
}

.ping-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent rgba(20, 20, 20, 0.95) transparent;
}

.ping-container.show-tooltip .ping-tooltip {
    visibility: visible;
    opacity: 1;
}

@keyframes loadingDots {
    0% { content: '.'; }
    25% { content: '..'; }
    50% { content: '...'; }
    75% { content: '....'; }
    100% { content: '.'; }
}

.ping-value[data-status="loading"]::after {
    animation: loadingDots 1.5s infinite;
    content: '.';
    display: inline-block;
    width: 20px;
    text-align: left;
}

.tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tooltip-section {
    display: flex;
    gap: 5px;
    white-space: nowrap;       
}

.tooltip-section strong {
    color: #fff;
    min-width: 80px;
}

.tooltip-section span {
    color: #fff;
    word-break: break-word;
    overflow-wrap: break-word;
}
.sof-badge {
    display: flex;
//    right: -50px; 
    align-items: center;
    gap: 4px;
    background-color: rgb(19, 19, 19);
    padding: 0px 0px;
    border-radius: 20px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    margin-left: 35px;
    margin-top: 4px;
}

.sof-label {
    color: rgb(99, 99, 99);
    font-weight:500;
}

.sof-value {
    color: rgb(99, 99, 99);
    font-weight: 450;
}

@media only screen and (max-width: 579px) {
    .ping-tooltip {
        white-space: normal;    
        max-width: 90vw;        
    }
    
    .tooltip-section {
        white-space: normal;
    }
    
    .tooltip-section span {
        white-space: normal;
    }
}

@media only screen and (max-width: 850px) {
    .search-input {
        width: 100px;  
        font-size: 13px;  
        height: 28px;  
        padding: 3px 6px;
    }
}

@media only screen and (max-width: 579px) {
    .search-input {
        width: 100px;  
        font-size: 12px;
        height: 26px;  
        padding: 2px 5px;
    }
}

#main-message {
    font-size: 30px !important;
    font-weight: 400 !important;
}
#race-list table {
    font-family: 'Roboto', sans-serif;
}

#race-list th {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: rgb(40, 40, 40);
}

#race-list td {
    font-size: 14px;
}

#race-list tr:hover {
    background-color: rgb(50, 50, 50);
}

@media only screen and (max-width: 850px) {
    #race-list th, #race-list td {
        padding: 8px !important;
        font-size: 12px;
    }
    
 /*   #race-list th:nth-child(5), #race-list td:nth-child(5),
    #race-list th:nth-child(6), #race-list td:nth-child(6) {
        display: none;
    }*/
}
