.spritespin {
    width: 100%;
    height: auto;
  }

  .fuel-button {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .fuel-button:hover {
    background-color: #666;
  }

  .color-options {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
  }

  .color-circle.green {
    background-color: green;
  }

  .color-circle.black {
    background-color: black;
  }

  .color-circle.yellow {
    background-color: yellow;
  }

  /* .color-circle.pink {
    background-color: pink;
  } */

  .specs {
    margin-top: 20px;
  }

  .specsTitle {
    font-weight: bold;
  }

  .specsText {
    margin: 0;
  }

  .d-flex {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .mr-3 {
    margin-right: 15px;
  }

  .pr-3 {
    padding-right: 15px;
  }

  /* Responsive styling */
  @media (max-width: 991px) {

    .col-lg-5,
    .col-md-6 {
      flex: 0 0 100%;
      max-width: 100%;
      text-align: center;
    }

    .offset-md-1 {
      margin-left: 0;
    }

    .d-flex {
      flex-direction: column;
      align-items: flex-start;
    }

    .mr-3,
    .pr-3 {
      margin-right: 0;
      padding-right: 0;
    }
  }

  @media (max-width: 767px) {
    .fuel-button {
      width: 100%;
      margin: 5px 0;
    }

    .color-options {
      flex-direction: column;
    }

    .color-circle {
      margin: 5px 0;
    }

    .spritespin-stage {
      width: 380px !important;
      height: 227px !important;
      position: absolute;
      display: block;
      text-align: center !important;
      justify-content: center !important;
      align-items: center !important;
    }

    .spritespin-canvas {
      width: 380px !important;
      height: 227px !important;
      position: absolute;
      display: block;
      text-align: center !important;
      justify-content: center !important;
      align-items: center !important;
    }

    .spritespin-instance {
      width: 100% !important;
      height: auto !important;
    }
  }

  @media (max-width: 575px) {
    .spritespin {
      width: 100%;
      height: auto;
    }

    .specs {
      padding: 0 10px;
    }

    .spritespin-stage {
      width: 280px !important;
      height: 127px !important;
      position: absolute;
      display: block;
      text-align: center !important;
      justify-content: center !important;
      align-items: center !important;
    }

    .spritespin-canvas {
      width: 280px !important;
      height: 160px !important;
      position: absolute;
      display: block;
      text-align: center !important;
      justify-content: center !important;
      align-items: center !important;
    }

    .spritespin-instance {
      width: 280px !important;
      height: 150px !important;
      justify-content: center;
    }

    table td,
    th {
      overflow-x: auto;
      padding: 0px;
    }
  }