body {
    background: linear-gradient(to right, #1d2671, #c33764);
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    width: 320px;
    text-align: center;
}

#display {
    font-size: 40px;
    margin: 20px 0;
}

.buttons button {
    padding: 10px 15px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.buttons button:hover {
    background: #c33764;
    color: white;
}

#laps {
    margin-top: 15px;
    padding: 0;
    list-style: none;
    max-height: 150px;
    overflow-y: auto;
}

#laps li {
    background: #222;
    margin: 5px 0;
    padding: 5px;
    border-radius: 4px;
}
