
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Modern vehicle tile styling */
.vehicle-tile {
    cursor: pointer;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #00BCD4;
    border-radius: 10px;
    background-color: #9cdee647;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.vehicle-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px rgb(0 0 0 / 15%);
    background-color: #f9f9f9;
}

/* Enable scrolling on modal bodies if content is long */
.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

html, body {
    height: 100%;
    margin: 0;
  }
  
  body {
    display: flex;
    flex-direction: column;
  }
  
  main {
    flex: 1;
  }