.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black overlay */
    backdrop-filter: blur(5px);
    /* Blur effect */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    /* Ensure it's on top */
}

.modal-content-vehicle {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    /* Limit modal width */
    position: relative;
    text-align: center;
    box-sizing: border-box;
    /* Include padding in width */
}

.modal-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 18px !important;
    line-height: 32px !important;
    margin-top: 18px;
    color: #333;
}

.modal-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.modal-input-group {
    margin-bottom: 15px;
}

.modal-input {
    width: calc(100% - 24px);
    /* Account for padding */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    /* Include padding in width */
}

.modal-phone-input-container {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    /* To contain the flag and input */
    margin-bottom: 15px;
}



.modal-button {
    background-color: #000;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.modal-button:hover {
    background-color: #333;
}

.modal-privacy-text {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
    line-height: 1.5;
}

.modal-privacy-text a {
    color: #007bff;
    text-decoration: none;
}

.modal-privacy-text a:hover {
    text-decoration: underline;
}