.openModalBtn {    
    margin-top: 8px;
    background-color: #f27e18;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    padding: .375rem .75rem;
    margin-left: 5px;
}

.myModal {
    display: flex;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.modalContent {
    background: #fff;
    padding: 24px 20px;
    border-radius: 8px;
    min-width: 340px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 700px;
    max-height: calc(100vh - 40px);
    overflow: auto;
    margin-inline: 20px;
}

.closeModalBtn {
    position: absolute;
    right: 14px;
    top: 12px;
    font-size: 20px;
    cursor: pointer;
}

.vehicleInput {
    width: 100%;
    margin-bottom: 10px;
    padding: 6px;
}

.generateBtn {    
    margin-top: 8px;
    background-color: #f27e18;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    padding: .375rem .75rem;
}

.descriptionResult {
    margin-top: 16px;
    background: #f7f7f7;
    border-radius: 6px;
    padding: 10px;
}

.useDescriptionBtn {
    margin-top: 12px;
    background-color: #f27e18;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    padding: .375rem .75rem;
    display: block;
    margin-left: auto;
}