


    body {
        font-family: Arial, sans-serif;
        background-color: #f0f0f0;
        margin: 0;
        padding: 0;
    }

    h1 {
        text-align: center;
        color: #333;
    }

    label {
        font-weight: bold;
        color: #333;
    }

    select, input[type="number"] {
        width: 100%;
        padding: 10px;
        margin: 5px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    /* Remove the custom width and height for input[type="color"] */
    input[type="color"] {
        /* No additional styling */
    }

    button {
        background-color: #007bff;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    button:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

    #customizableSettings {
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }



    #svgCircuit {
        display: block;
        margin: 20px auto;
        width: 100%;
    }

    #lapCounter, #lapTime {
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }

    .settings-group {
        width: 48%;
      display: inline-block;
    }
#lapDuration1,#lapDuration2, #numLaps {
        width: 50px; /* Adjust the width as needed */
        text-align: center;
    }
    
    .lap-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
