.d-f-r {
    display: flex;
    flex-direction: row;
}

.d-f-c {
    display: flex;
    flex-direction: column;
}

.step-col h5 {
    font-weight: 300;
    text-transform: none;
}

/* Progress Bar Styling */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 20px 0 5px 0;
}

.progress-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.progress-step.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.progress-step.completed {
    background: #000;
    color: #fff;
    border-color: #000;
}

.progress-line {
    width: 50px;
    height: 2px;
    background: #e0e0e0;
}

@media screen and (min-width: 768px) {
    .progress-step {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    .progress-line {
        width: 80px;
    }
}

/* General styling */
#vehicle-upload-form.design1 {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1300px;
    margin: auto;
    margin-top: -134px;
}

#vehicle-upload-form.design1 .step-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 15px;
    align-items: center;
}

button.next-step {
    text-wrap: nowrap;
    max-width: 100%;
    width: 100%;
}

button.next-step svg {
    max-height: 45px;
}

#vehicle-upload-form.design1 .step-col {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 300;
    font-size: 13px;
    text-transform: uppercase;
    width: 100%;
    max-width: 100%;
}

#vehicle-upload-form.design1 .step-row.button-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.privacy-modal {
    font-weight: 400;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.privacy-modal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}
.privacy-modal-content p {
    font-weight: 400;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}
.privacy-modal-content p a {
    color: #000;
    text-decoration: underline;
}
.privacy-modal-content {
    background: #fff;
    padding: 32px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin: auto;
    width: fit-content;
    max-width: 90%;
}
.privacy-modal button {
    margin: 0;
    padding: 14px 24px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}
#accept-privacy {
    background-color: #000;
    color: #fff;
    width: 100%;
    border: none;
}
#accept-privacy:hover {
    background-color: #333;
}
#decline-privacy {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    color: #666;
    width: 100%;
}
#decline-privacy:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
    color: #333;
}
.privacy-modal .d-inline {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.d-inline {
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 0;
    margin: 0;
    justify-content: center;
}
#vehicle-upload-form.design1 .optional-fields-btn {
    margin-top: 0px;
    padding: 15px;
    width: 100%;
    text-align: center;
}
#vehicle-upload-form.design1 .d-none {
    display: none;
}
#vehicle-upload-form.design1 .m-w-100 {
    max-width: 100%;
}
#vehicle-upload-form.design1 .form-head {
    border-bottom: 1px solid #e9e9e9;
    padding: 0;
    margin: 0;
    line-height: 0;
    margin-bottom: 19px;
}
#vehicle-upload-form.design1 .form-head h4 {
    font-size: 22px;
    font-weight: 200;
    line-height: 22px;
    padding: 0;
    margin: 0;
    padding-bottom: 14px;
}
@media screen and (min-width: 768px) {
    #vehicle-upload-form.design1 .step-col.l-width {
        max-width: 254px;
    }
    #vehicle-upload-form.design1 .step-row {
        flex-direction: row;
    }
    #vehicle-upload-form.design1 {
        max-width: 90%;
    }
    #vehicle-upload-form.design1 button.next-step {
        text-wrap: auto;
        max-width: min-content;
        width: unset;
    }
    .privacy-modal-content {
        max-width: 500px;
    }
    #vehicle-upload-form.design1 .optional-fields-btn {
        margin-top: 15px;
        width: 28%;
    }
}

@media screen and (min-width: 1024px) {
    #vehicle-upload-form.design1 {
        max-width: 90%;
    }
    
}

@media screen and (min-width: 1366px) {
    #vehicle-upload-form.design1 {
        max-width: 90%;
    }
}

/* Dropdown and input styling */
#vehicle-upload-form.design1 select, 
#vehicle-upload-form.design1 input {
    flex: 1;
    padding: 12px 19px;
    border: none;
    background: #eaf1f6;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    appearance: none;
    font-weight: 300;
}

#vehicle-upload-form.design1 select:focus-visible {
    border: none;
}

/* Image Upload Styling */
#vehicle-upload-form.design1 #vehicle-image-upload {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8fbfd;
    border-radius: 8px;
    border: 2px dashed #ccc;
    justify-content: center;
    cursor: pointer;
    height: 95px;
    width: 100%;
    min-height: 10px;
}

#vehicle-upload-form.design1 #vehicle-image-upload .dz-preview.dz-image-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0px;
    min-height: 70px;
    display: flex;
    flex-direction: row;
}
#vehicle-upload-form.design1 #vehicle-image-upload .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 70px;
    max-height: 70px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

#vehicle-upload-form.design1 #vehicle-image-upload .dz-remove {
    font-size: 22px;
    font-weight: 600;
    padding-left: 7px;
}
#vehicle-upload-form.design1 #vehicle-image-upload .dz-preview .dz-image {
    border-radius: 3px;
    overflow: hidden;
    width: 70px;
    height: 70px;
    position: relative;
    display: block;
    z-index: 10;
}
#vehicle-upload-form.design1 #vehicle-image-upload .dz-error-mark, #vehicle-image-upload  .dz-success-mark {
    left: 38%;
}
#vehicle-upload-form.design1 #vehicle-image-upload .dz-preview .dz-progress {
    left: 43%;
    width: 70px;
}
#vehicle-upload-form.design1 #vehicle-image-upload .dz-preview .dz-details {
    display: none;
}

/* Buttons */
#vehicle-upload-form.design1 button.next-step, 
button.submit-form, 
button.back-step {
    background: #000;
    color: white;
    padding: 14px 24px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    max-height: fit-content;
}

#vehicle-upload-form.design1 button.next-step:hover, 
button.submit-form:hover, 
button.back-step:hover {
    background: #333;
}

#vehicle-upload-form.design1 button.back-step {
    background: white;
    border: 3px solid #eaf1f6;
    color: #b3b3b3;
}
#vehicle-upload-form.design1 button.back-step:hover {
    background: #eaf1f6;
    color: black;
}












































/* General styling */
#vehicle-upload-form.design2 {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: auto;
}
#vehicle-upload-form.design2 .step-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 15px;
    align-items: center;
}
#vehicle-upload-form.design2 .step-col {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 300;
    font-size: 13px;
    text-transform: uppercase;
    width: 100%;
    max-width: 100%;
}
#vehicle-upload-form.design2 .step-row.button-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#vehicle-upload-form.design2 .d-inline {
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 0;
    margin: 0;
    justify-content: center;
}
#vehicle-upload-form.design2 .optional-fields-btn {
    margin-top: 0px;
    padding: 15px;
    width: 100%;
    text-align: center;
}
#vehicle-upload-form.design2 .d-none {
    display: none;
}
#vehicle-upload-form.design2 .m-w-100 {
    max-width: 100%;
}
#vehicle-upload-form.design2 .form-head {
    border-bottom: 1px solid #e9e9e9;
    padding: 0;
    margin: 0;
    line-height: 0;
    margin-bottom: 19px;
}
#vehicle-upload-form.design2 .form-head h4 {
    font-size: 22px;
    font-weight: 200;
    line-height: 22px;
    padding: 0;
    margin: 0;
    padding-bottom: 14px;
}
@media screen and (min-width: 768px) {
    #vehicle-upload-form.design2 .step-col.l-width {
        max-width: 100%;
    }
    #vehicle-upload-form.design2 .step-row {
        flex-direction: column;
    }
    #vehicle-upload-form.design2 button.next-step {
        text-wrap: auto;
        width: unset;
    }
    .privacy-modal-content {
        max-width: 500px;
    }
    #vehicle-upload-form.design2 .optional-fields-btn {
        margin-top: 15px;
        width: 100%;
    }
}
/* Dropdown and input styling */
#vehicle-upload-form.design2 select, 
#vehicle-upload-form.design2 input {
    flex: 1;
    padding: 12px 19px;
    border: none;
    background: #eaf1f6;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    appearance: none;
    font-weight: 300;
}
#vehicle-upload-form.design2 select:focus-visible {
    border: none;
}
/* Image Upload Styling */
#vehicle-upload-form.design2 #vehicle-image-upload {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8fbfd;
    border-radius: 8px;
    border: 2px dashed #ccc;
    justify-content: center;
    cursor: pointer;
    height: 95px;
    width: 100%;
    min-height: 10px;
}
#vehicle-upload-form.design2 #vehicle-image-upload .dz-preview.dz-image-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0px;
    min-height: 70px;
    display: flex;
    flex-direction: row;
}
#vehicle-upload-form.design2 #vehicle-image-upload .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 70px;
    max-height: 70px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
#vehicle-upload-form.design2 #vehicle-image-upload .dz-remove {
    font-size: 22px;
    font-weight: 600;
    padding-left: 7px;
}
#vehicle-upload-form.design2 #vehicle-image-upload .dz-preview .dz-image {
    border-radius: 3px;
    overflow: hidden;
    width: 70px;
    height: 70px;
    position: relative;
    display: block;
    z-index: 10;
}
#vehicle-upload-form.design2 #vehicle-image-upload .dz-error-mark, #vehicle-image-upload  .dz-success-mark {
    left: 38%;
}
#vehicle-upload-form.design2 #vehicle-image-upload .dz-preview .dz-progress {
    left: 43%;
    width: 70px;
}
#vehicle-upload-form.design2 #vehicle-image-upload .dz-preview .dz-details {
    display: none;
}
/* Buttons */
#vehicle-upload-form.design2 button.next-step, 
button.submit-form, 
button.back-step {
    background: #000;
    color: white;
    padding: 14px 24px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    max-height: fit-content;
}
#vehicle-upload-form.design2 button.next-step:hover, 
button.submit-form:hover, 
button.back-step:hover {
    background: #333;
}
#vehicle-upload-form.design2 button.back-step {
    background: white;
    border: 3px solid #eaf1f6;
    color: #b3b3b3;
}
#vehicle-upload-form.design2 button.back-step:hover {
    background: #eaf1f6;
    color: black;
}


















/* General styling */
#vehicle-upload-form.design3 {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 680px;
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}
#vehicle-upload-form.design3 .step-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 20px;
    align-items: stretch;
}
#vehicle-upload-form.design3 .step-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 500;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.02em;
    color: #333;
    width: 100%;
    max-width: 100%;
}
#vehicle-upload-form.design3 .step-col .checkbox-wrapper-1 {
    display: flex;
    align-items: center;
}

/* Form Loading Overlay */
#form-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 8px;
}

#form-loading-overlay .form-loading-spinner {
    text-align: center;
}

#form-loading-overlay .form-loading-spinner svg {
    width: 80px;
    height: 80px;
}

#form-loading-overlay .form-loading-spinner p {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
#vehicle-upload-form.design3 .step-col label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
    /*display: block;*/
}
#vehicle-upload-form.design3 .step-col .field-hint {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    font-style: italic;
}
#vehicle-upload-form.design3 .field-validation-error {
    display: block;
    font-size: 13px;
    color: #d32f2f;
    margin-top: 6px;
    font-weight: 500;
}

/* Inline Option Buttons (Ja/Nein/Unsicher) */
#vehicle-upload-form.design3 .inline-option-group {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
}
#vehicle-upload-form.design3 .inline-option {
    display: inline-flex;
    cursor: pointer;
    margin: 0;
}
#vehicle-upload-form.design3 .inline-option input[type="radio"] {
    display: none;
}
#vehicle-upload-form.design3 .inline-option .inline-option-label {
    padding: 10px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 0px;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    user-select: none;
}
#vehicle-upload-form.design3 .inline-option:hover .inline-option-label {
    border-color: #999;
    background: #eee;
}
#vehicle-upload-form.design3 .inline-option input[type="radio"]:checked + .inline-option-label {
    border-color: #000;
    background: #000;
    color: #fff;
}

#vehicle-upload-form.design3 .step-row.button-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}
#vehicle-upload-form.design3 .d-inline {
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 0;
    margin: 0;
    justify-content: center;
}
#vehicle-upload-form.design3 .optional-fields-btn {
    margin-top: 8px;
    padding: 0;
    width: 100%;
    text-align: center;
}
#vehicle-upload-form.design3 .optional-fields-btn a {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    transition: all 0.2s ease;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
}
#vehicle-upload-form.design3 .optional-fields-btn a:hover {
    color: #333;
    border-color: #ccc;
    background: #fafafa;
}
#vehicle-upload-form.design3 .d-none {
    display: none;
}
#vehicle-upload-form.design3 .m-w-100 {
    max-width: 100%;
}
#vehicle-upload-form.design3 .form-head {
    border-bottom: none;
    padding: 0;
    margin: 0;
    margin-bottom: 8px;
    text-align: center;
}
#vehicle-upload-form.design3 .form-head h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    padding: 0 0 15px 0px;
    margin: 0;
    margin-bottom: 4px;
    color: #000;
    letter-spacing: -0.02em;
}
#vehicle-upload-form.design3 .form-head p {
    padding: 0;
    margin: 0;
    line-height: normal;
    margin-bottom: 12px;
    margin-top: 2px;
    color: #666;
    font-size: 14px;
}
/* Sale Type Cards */
#vehicle-upload-form.design3 .sale-type-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
#vehicle-upload-form.design3 .sale-type-card {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    position: relative;
}
#vehicle-upload-form.design3 .sale-type-card:hover {
    border-color: #bbb;
    background: #fafafa;
}
#vehicle-upload-form.design3 .sale-type-card:has(input:checked) {
    border-color: #000;
    background: #f8f8f8;
}
#vehicle-upload-form.design3 .sale-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
#vehicle-upload-form.design3 .sale-type-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 30px;
}
#vehicle-upload-form.design3 .sale-type-card .card-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}
#vehicle-upload-form.design3 .sale-type-card .card-description {
    font-size: 13px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
}
#vehicle-upload-form.design3 .sale-type-card .card-check {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: all 0.2s ease;
}
#vehicle-upload-form.design3 .sale-type-card .card-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    transition: transform 0.2s ease;
}
#vehicle-upload-form.design3 .sale-type-card:has(input:checked) .card-check {
    border-color: #000;
}
#vehicle-upload-form.design3 .sale-type-card:has(input:checked) .card-check::after {
    transform: translate(-50%, -50%) scale(1);
}

#vehicle-upload-form.design3 .idcheckbox {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 12px;
}
#vehicle-upload-form.design3 .idcheckbox span {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

/* Buttons */
#vehicle-upload-form.design3 button.next-step, 
#vehicle-upload-form.design3 button.submit-form {
    background: #000;
    color: #fff;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
#vehicle-upload-form.design3 button.next-step:hover,
#vehicle-upload-form.design3 button.submit-form:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
#vehicle-upload-form.design3 button.next-step:active,
#vehicle-upload-form.design3 button.submit-form:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
#vehicle-upload-form.design3 button.back-step {
    background: #fff;
    border: 2px solid #e5e5e5;
    color: #555;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    min-width: fit-content;
}
#vehicle-upload-form.design3 button.back-step:hover {
    background: #f8f8f8;
    border-color: #ccc;
    color: #333;
}

.powered-by-container {
    width: 100%;
    text-align: center;
    padding-top: 16px;
    color: #999;
    font-size: 11px;
    display: none;
}
.powered-by-container a {
    color: #666;
    font-weight: 500;
    text-decoration: none;
}
.powered-by-container a:hover {
    color: #000;
}

@media screen and (min-width: 768px) {
    #vehicle-upload-form.design3 {
        padding: 40px;
        max-width: 640px;
    }
    #vehicle-upload-form.design3 .step-col.l-width {
        max-width: 100%;
    }
    #vehicle-upload-form.design3 .step-row {
        flex-direction: row;
        gap: 20px;
    }
    #vehicle-upload-form.design3 button.next-step,
    #vehicle-upload-form.design3 button.submit-form {
        flex: unset;
        min-width: 140px;
    }
    #vehicle-upload-form.design3 button.back-step {
        flex: unset;
        min-width: 120px;
    }
    .privacy-modal-content {
        max-width: 500px;
    }
    #vehicle-upload-form.design3 .optional-fields-btn {
        padding-top: 0px;
        width: 100%;
    }
    #vehicle-upload-form.design3 .idcheckbox {
        width: 40%;
    }
    .ankauf-page .powered-by-container {
        color: #999;
        display: block;
    }
    .powered-by-container {
        display: block;
    }
}
/* Dropdown and input styling */
#vehicle-upload-form.design3 select,
#vehicle-upload-form.design3 input[type="text"],
#vehicle-upload-form.design3 input[type="number"],
#vehicle-upload-form.design3 input[type="email"],
#vehicle-upload-form.design3 input[type="tel"],
#vehicle-upload-form.design3 textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e5e5e5;
    background: #fff;
    border-radius: 12px;
    font-size: 15px;
    color: #222;
    appearance: none;
    font-weight: 400;
    font-family: inherit;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    min-height: 54px;
    box-sizing: border-box;
    resize: vertical;
}

#vehicle-upload-form.design3 select:hover,
#vehicle-upload-form.design3 input[type="text"]:hover,
#vehicle-upload-form.design3 input[type="number"]:hover,
#vehicle-upload-form.design3 input[type="email"]:hover,
#vehicle-upload-form.design3 input[type="tel"]:hover,
#vehicle-upload-form.design3 textarea:hover {
    border-color: #ccc;
    background: #fafafa;
}

#vehicle-upload-form.design3 select:focus,
#vehicle-upload-form.design3 input[type="text"]:focus,
#vehicle-upload-form.design3 input[type="number"]:focus,
#vehicle-upload-form.design3 input[type="email"]:focus,
#vehicle-upload-form.design3 input[type="tel"]:focus,
#vehicle-upload-form.design3 textarea:focus {
    border-color: #000;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

#vehicle-upload-form.design3 select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

/* Optgroup and option styling */
#vehicle-upload-form.design3 select optgroup {
    font-weight: 700;
    color: #222 !important;
    background: #f5f5f5;
}

#vehicle-upload-form.design3 select option {
    font-weight: 400 !important;
    color: #222 !important;
    background: #fff !important;
}

#vehicle-upload-form.design3 select optgroup option {
    font-weight: 400 !important;
    color: #222 !important;
    background: #fff !important;
}

#vehicle-upload-form.design3 select optgroup option:first-child {
    color: #222 !important;
}

#vehicle-upload-form.design3 input::placeholder {
    color: #999;
    font-weight: 400;
}

/* Error state for inputs */
#vehicle-upload-form.design3 select[style*="border: 2px solid red"],
#vehicle-upload-form.design3 input[style*="border: 2px solid red"] {
    border-color: #dc3545 !important;
    background: #fff5f5 !important;
}

/* Error message styling */
#vehicle-upload-form.design3 .error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

#vehicle-upload-form.design3 .paragraf {
    margin-top: 24px;
    margin-bottom: 0;
    text-align: center;
    font-size: 13px;
    color: #999;
    font-weight: 500;
    padding: 12px 16px;
    background: #f8f8f8;
    border-radius: 8px;
}

/* Thank you / Error step styling */
#vehicle-upload-form.design3 .step-5 h5,
#vehicle-upload-form.design3 .step-6 h5 {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    text-align: center;
    line-height: 1.5;
    padding: 40px 20px;
}

/* Image Upload Styling */
#vehicle-upload-form.design3 #vehicle-image-upload {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background: #fff;
    border-radius: 12px;
    border: 2px dashed #d0d0d0;
    cursor: pointer;
    width: 100%;
    min-height: 140px;
    flex-wrap: wrap;
    transition: all 0.2s ease;
}
#vehicle-upload-form.design3 #vehicle-image-upload:hover {
    border-color: #999;
    background: #fafafa;
}
#vehicle-upload-form.design3 #vehicle-image-upload .dz-message {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}
#vehicle-upload-form.design3 #vehicle-image-upload .dz-preview.dz-image-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0px;
    min-height: 80px;
    display: flex;
    flex-direction: row;
}
#vehicle-upload-form.design3 #vehicle-image-upload .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 8px;
    min-height: 80px;
    max-height: 80px;
    padding: 0;
    display: flex;
    align-items: center;
}
#vehicle-upload-form.design3 #vehicle-image-upload .dz-remove {
    font-size: 18px;
    font-weight: 600;
    padding-left: 8px;
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}
#vehicle-upload-form.design3 #vehicle-image-upload .dz-remove:hover {
    color: #000;
}
#vehicle-upload-form.design3 #vehicle-image-upload .dz-preview .dz-image {
    border-radius: 8px;
    overflow: hidden;
    width: 80px;
    height: 80px;
    position: relative;
    display: block;
    z-index: 10;
    border: 1px solid #e0e0e0;
}
#vehicle-upload-form.design3 #vehicle-image-upload .dz-error-mark, 
#vehicle-upload-form.design3 #vehicle-image-upload .dz-success-mark {
    left: 38%;
}
#vehicle-upload-form.design3 #vehicle-image-upload .dz-preview .dz-progress {
    left: 43%;
    width: 80px;
}
#vehicle-upload-form.design3 #vehicle-image-upload .dz-preview .dz-details {
    display: none;
}

#vehicle-upload-form.design3 button.next-step:hover, 
#vehicle-upload-form.design3 button.submit-form:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Checkbox Card (Unfallfrei) */
#vehicle-upload-form.design3 .checkbox-card-wrapper {
    position: relative;
    width: 100%;
}
#vehicle-upload-form.design3 .checkbox-card-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
#vehicle-upload-form.design3 .checkbox-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    margin-bottom: 0;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    min-height: 54px;
}
#vehicle-upload-form.design3 .checkbox-card:hover {
    border-color: #ccc;
    background: #fafafa;
}
#vehicle-upload-form.design3 .checkbox-card-wrapper input[type="checkbox"]:checked + .checkbox-card {
    border-color: #000;
    background: #f8f8f8;
}
#vehicle-upload-form.design3 .checkbox-card .checkbox-box {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border: 2px solid #ccc;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    background: #fff;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}
#vehicle-upload-form.design3 .checkbox-card .checkbox-box::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
}
#vehicle-upload-form.design3 .checkbox-card-wrapper input[type="checkbox"]:checked + .checkbox-card .checkbox-box {
    background: #000;
    border-color: #000;
}
#vehicle-upload-form.design3 .checkbox-card-wrapper input[type="checkbox"]:checked + .checkbox-card .checkbox-box::after {
    transform: rotate(45deg) scale(1);
}
#vehicle-upload-form.design3 .checkbox-card .checkbox-label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    display: inline-block;
}

/* Privacy Card (Datenschutz checkbox) */
#vehicle-upload-form.design3 .privacy-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    gap: 14px;
    margin-bottom: 0;
}
#vehicle-upload-form.design3 .privacy-card:hover {
    border-color: #ccc;
    background: #fafafa;
}
#vehicle-upload-form.design3 .privacy-card:has(input:checked) {
    border-color: #000;
    background: #f8f8f8;
}
#vehicle-upload-form.design3 .privacy-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
#vehicle-upload-form.design3 .privacy-card .privacy-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #ccc;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}
#vehicle-upload-form.design3 .privacy-card .privacy-check::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
}
#vehicle-upload-form.design3 .privacy-card:has(input:checked) .privacy-check {
    background: #000;
    border-color: #000;
}
#vehicle-upload-form.design3 .privacy-card:has(input:checked) .privacy-check::after {
    transform: rotate(45deg) scale(1);
}
#vehicle-upload-form.design3 .privacy-card .privacy-text {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    line-height: 1.6;
}
#vehicle-upload-form.design3 .privacy-card .privacy-text a {
    color: #000;
    font-weight: 500;
    text-decoration: underline;
}
#vehicle-upload-form.design3 .privacy-card .privacy-text a:hover {
    text-decoration: none;
}







.idswitch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .idswitch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .idslider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .idslider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .idslider {
    background-color: #2196F3;
  }
  
  input:focus + .idslider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .idslider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .idslider.round {
    border-radius: 34px;
  }
  
  .idslider.round:before {
    border-radius: 50%;
  }











  .idradio {
    margin-top: 0;
    width: 100%;
  }

  .idradio > span {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    display: block;
    margin-bottom: 12px;
  }

  .idradio label {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .idradio label input {
    position: absolute;
    left: -9999px;
  }
  .idradio label input:checked + span {
    background-color: #f0f0f0;
    border-color: #000;
  }
  .idradio label input:checked + span:before {
    box-shadow: inset 0 0 0 0.4375em #000;
  }
  .idradio label span {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    transition: 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    width: 100%;
  }
  .idradio label span:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
  }
  .idradio label span:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.2s ease;
    box-shadow: inset 0 0 0 2px #ccc;
  }












  .checkbox-wrapper-1 *,
  .checkbox-wrapper-1 ::after,
  .checkbox-wrapper-1 ::before {
    box-sizing: border-box;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted {
    margin: 0;
    width: 0;
    height: 0;
    display: inline;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted + label:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 22px;
    width: 22px;
    min-width: 22px;
    margin-right: 12px;
    margin-top: 0;
    color: #ccc;
    border: 2px solid #d0d0d0;
    box-shadow: none;
    border-radius: 6px;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat center, #fafafa;
    background-size: 0;
    will-change: color, border, background, background-size, box-shadow;
    transform: translate3d(0, 0, 0);
    transition: all 0.15s ease;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted + label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
    -webkit-user-select: none;
    user-select: none;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted + label a {
    color: #000;
    text-decoration: underline;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:enabled:active + label:before,
  .checkbox-wrapper-1 [type=checkbox].substituted:enabled + label:active:before {
    box-shadow: none;
    background-color: #f5f5f5;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:checked + label:before {
    background-color: #000;
    border-color: #000;
    background-size: 14px;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:checked:enabled:active + label:before,
  .checkbox-wrapper-1 [type=checkbox].substituted:checked:enabled + label:active:before {
    background-color: #333;
    border-color: #333;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:focus:active + label:before,
  .checkbox-wrapper-1 [type=checkbox].substituted:focus + label:active:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:disabled + label:before {
    opacity: 0.5;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:hover + label:before {
    border-color: #999;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:checked:hover + label:before {
    background-color: #333;
    border-color: #333;
  }

  .idcheckbox {
    display: flex;
    gap: 12px;
    flex-direction: column;
    margin-top: 0;
    width: 100%;
  }

  /* Long text checkbox wrapper (e.g., Datenschutz) */
  .checkbox-wrapper-long *,
  .checkbox-wrapper-long ::after,
  .checkbox-wrapper-long ::before {
    box-sizing: border-box;
  }
  .checkbox-wrapper-long [type=checkbox].substituted {
    margin: 0;
    width: 0;
    height: 0;
    display: inline;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .checkbox-wrapper-long [type=checkbox].substituted + label:before {
    content: "";
    display: block;
    float: left;
    height: 22px;
    width: 22px;
    min-width: 22px;
    margin-right: 12px;
    margin-top: 2px;
    color: #ccc;
    border: 2px solid #d0d0d0;
    box-shadow: none;
    border-radius: 6px;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat center, #fafafa;
    background-size: 0;
    will-change: color, border, background, background-size, box-shadow;
    transform: translate3d(0, 0, 0);
    transition: all 0.15s ease;
  }
  .checkbox-wrapper-long [type=checkbox].substituted + label {
    display: block;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    -webkit-user-select: none;
    user-select: none;
  }
  .checkbox-wrapper-long [type=checkbox].substituted + label a {
    color: #000;
    text-decoration: underline;
  }
  .checkbox-wrapper-long [type=checkbox].substituted:enabled:active + label:before,
  .checkbox-wrapper-long [type=checkbox].substituted:enabled + label:active:before {
    box-shadow: none;
    background-color: #f5f5f5;
  }
  .checkbox-wrapper-long [type=checkbox].substituted:checked + label:before {
    background-color: #000;
    border-color: #000;
    background-size: 14px;
  }
  .checkbox-wrapper-long [type=checkbox].substituted:checked:enabled:active + label:before,
  .checkbox-wrapper-long [type=checkbox].substituted:checked:enabled + label:active:before {
    background-color: #333;
    border-color: #333;
  }
  .checkbox-wrapper-long [type=checkbox].substituted:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  }
  .checkbox-wrapper-long [type=checkbox].substituted:disabled + label:before {
    opacity: 0.5;
  }
  .checkbox-wrapper-long [type=checkbox].substituted:hover + label:before {
    border-color: #999;
  }
  .checkbox-wrapper-long [type=checkbox].substituted:checked:hover + label:before {
    background-color: #333;
    border-color: #333;
  }

/* ===========================================
   SMS Verification Step Styles (Compact Design)
   =========================================== */

/* Header section */
.sms-verify-header {
    text-align: center;
    margin-bottom: 20px;
}

.sms-verify-title {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.sms-verify-hint {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
}

.sms-verify-phone {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-top: 6px;
}

/* Input section */
.sms-verify-input-section {
    margin-bottom: 20px;
}

.sms-verify-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.sms-verify-input {
    width: 100%;
    padding: 16px 18px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 8px;
    text-align: center;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #f8fafc;
    color: #222;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sms-verify-input:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.sms-verify-input::placeholder {
    color: #aaa;
    letter-spacing: 8px;
}

/* Resend button */
.sms-verify-resend {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: #555;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: underline;
    padding: 12px 0 0 0;
    text-align: center;
}

.sms-verify-resend:not(:disabled):hover {
    color: #000;
}

.sms-verify-resend:disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: none;
}

/* Error/Success messages */
.sms-verify-error {
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    color: #c62828;
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 400;
}

.sms-verify-success {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 400;
}

/* Verify button - matching design3 style */
#vehicle-upload-form.design3 button.verify-and-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    flex: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#vehicle-upload-form.design3 button.verify-and-submit:hover:not(:disabled) {
    background: #222;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#vehicle-upload-form.design3 button.verify-and-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Loading spinner for verification */
.sms-verify-loading {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: sms-spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes sms-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Sending SMS overlay */
.sms-sending-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: inherit;
}

.sms-sending-overlay .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: sms-spin 1s linear infinite;
    margin-bottom: 12px;
}

.sms-sending-overlay p {
    font-size: 14px;
    font-weight: 400;
    color: #555;
}

/* Mobile adjustments */
@media screen and (max-width: 480px) {
    .sms-verify-title {
        font-size: 1.1em;
    }
    
    .sms-verify-hint {
        font-size: 13px;
    }
    
    .sms-verify-input {
        font-size: 16px;
        padding: 14px 16px;
        letter-spacing: 6px;
    }
    
    #vehicle-upload-form.design3 button.verify-and-submit {
        padding: 14px 24px;
        font-size: 13px;
    }
}




  