body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#display {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ffffff;
}

button {
    background-color: #1f1f1f;
    color: #ffffff;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 20px;
    margin: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

button:hover {
    background-color: #333333;
    transform: scale(1.05);
}

button:active {
    transform: scale(0.97);
}

#lapsList {
    margin-top: 20px;
    max-height: 200px;
    overflow-y: scroll;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border-top: 1px solid #444;
    box-sizing:content-box;
}

#lapsList::-webkit-scrollbar {
    display: none;
}

.lap-item {
    background-color: #1f1f1f;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    font-size: 0.95rem;
}

.lap-number {
    color: #59c42b; 
    font-weight: bold;
}

.lap-time {
    color: #ffffff; 
}

.lap-item:hover {
    background-color: #333333;
}

#lapsList::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}
