body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    color: #f89d13;
    text-align: center;
    padding: 20px;
}

.breadcrumb-option {
    display: block;
    position: relative;
}

.breadcrumb-option::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.breadcrumb-option > * {
    position: relative;
}

.breadcrumb__text h2 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.breadcrumb__links a {
    font-size: 14px;
    color: #ffffff;
    font-weight: 300;
    display: inline-block;
    margin-right: 32px;
    position: relative;
}

.breadcrumb__links a:after {
    position: absolute;
    right: -22px;
    top: -3px;
    content: "/";
    color: #adadad;
    font-size: 20px;
}

.breadcrumb__links a:hover {
    color: #ff9999;
}

.breadcrumb__links span {
    font-size: 16px;
    color: #adadad;
    font-weight: 300;
    display: inline-block;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 {
    font-size: 28px;
}

footer {
    text-align: center;
    padding: 20px;
    padding-bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #f89d13;
}

a {
    color: #fff000;
    text-decoration: none;
}

a:hover {
    color: #cc00ff;
    text-decoration: underline;
}

.useful-links {
    list-style: none;
    font-size: 14px;
    margin-left: -40px;
}

.useful-links li {
    margin: 10px;
}

.useful-links a i {
    margin-right: 5px;
}

#race-container {
    background-color: #121212;
    padding: 20px 0;
}

#logo-container {
    background-color: #212121;
    padding-bottom: 20px;
    padding-top: 40px;
}

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.logo {
    background: #333;
    padding: 50px 20px;
}

.logo__carousel.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}

.warning-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #aa0000;
    background-color: #ccc;
    padding: 10px;
    margin: 10px;
    margin-top: 20px;
}

#raceArea {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100% !important;
    height: auto;
    background-image: url(../images/race/racetrack.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 4 / 1;
}

#startButton {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#startButton:hover {
    background-color: #008000;
    color: #ccc;
}

#startButton:active {
    background-color: #003000;
    color: #aaa;
}

.car {
    position: absolute;
    transition: left 2s; 
    display: none;
}

#winnerMessage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: bold;
    color: #4CAF50;
    background-color: black;
    display: none;
}

@media (max-width: 1000px) {
    #winnerMessage {
        font-size: 20px;
    }
}

.dropdown-container {
    margin-bottom: 0;
}

.dropdown-label {
    margin-bottom: 5px;
    display: block;
}

.dropdown-select {
    width: calc(100% - 24px); 
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #0000ff;
    color: #fff;
}

option {
    background-color: #aa0000;
    color: #fff;
}

optgroup {
    background-color: #aaa;
    color: #000;
}

.speedometer {
    position: relative;
    font-size: 16px;
    color: #fff;
    background-color: rgba(255, 0, 0, 0.5);
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
}

#speedometer1 {
    float: left;
}
  
#speedometer2 {
    float: right;
}

@media (max-width: 1000px) {
    .speedometer {
        font-size: 14px;
    }
}