        body {
            background-color: black;
            color: white;
            font-family: Arial, Helvetica, sans-serif;
        }

        h1 {
            text-transform: capitalize;
            text-align: center;
            font-size: 24px;
        }

        span {
            text-decoration: underline;
            font-size: 16px;
            font-weight: bold;
        }

        /* Contenedor de cada concesionario */
        .concesionario {
            border: 3px solid white;
            border-radius: 16px;
            margin: 16px 0;
            padding: 16px;
            list-style: none;
            /* quitar numeración de li */
            background-color: gray;
            color: black;
        }

        /* Quitar decoraciones de listas internas */
        .concesionario ul {
            padding-left: 0;
            margin-top: 8px;
            margin-bottom: 8px;
            list-style: none;
            /* quitar viñetas */
        }

        /* Cada item de coche: columna con imagen y botón */
        .concesionario ul li {
            display: flex;
            flex-direction: column;
            /* imagen arriba, botón abajo */
            align-items: center;
            /* centrar horizontalmente */
            gap: 8px;
            /* espacio entre imagen y botón */
            margin-bottom: 16px;
            /* espacio entre coches */
        }

        .boton {
           width: auto;
           text-decoration: none;
            padding: 16px;
            background-color: blue;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
        }

        .boton:hover {
            background-color: darkblue;
        }

        img {
            width: 300px;
            border-radius: 8px;
            border: 3px solid greenyellow;
            padding: 16px;
            background-color: gray;
        }

        div {
            text-align: center;
        }

        fieldset {
            border-radius: 16px;
            border: 3px solid gray;
            width: 500px;
            text-align: center;
            margin: 0 auto;
            padding: 16px;
            margin: 24px auto;
        }

        /* Labels alineados a la izquierda */
        fieldset label {
            display: block;
            /* hace que ocupe toda la línea */
            text-align: left;
            margin-bottom: 8px;
            font-weight: bold;
        }

        /* Inputs más grandes y al ancho del fieldset */
        fieldset input {
            width: 100%;
            /* ocupa todo el ancho del fieldset */
            padding: 10px;
            margin-bottom: 16px;
            border-radius: 8px;
            border: 2px solid gray;
            box-sizing: border-box;
            /* importante para que padding no rompa el ancho */
        }

        /* Estilizar el submit */
        /* Inputs submit y reset estilizados igual */
        fieldset input[type="submit"],
        fieldset input[type="reset"] {
            width: auto;
            padding: 12px;
            background-color: blue;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
        }

        /* Hover para ambos */
        fieldset input[type="submit"]:hover,
        fieldset input[type="reset"]:hover {
            background-color: darkblue;
        }

        /* Contenedor de botones centrado horizontalmente */
        .botones {
            display: flex;
            justify-content: center;
            /* centra los botones */
            gap: 16px;
            /* espacio entre ellos */
        }

        /* Ajustar ancho opcional de cada botón */
        .botones input[type="submit"],
        .botones input[type="reset"] {
            width: auto;
            /* que cada botón se ajuste a su contenido */
            padding: 12px 24px;
            /* más espacio horizontal */
        }