/* _content/InsuranceWeb/Shared/VehicleSelection.razor.rz.scp.css */
.vehicle-selection[b-w32c4g1z2g] {
    width: 100%;
}

.vehicle-step[b-w32c4g1z2g] {
    /*
    animation: vehicleStepIn .22s ease-out;
        */
}


/* =========================
   Header
   ========================= */

.vehicle-selection-header[b-w32c4g1z2g] {
    margin-bottom: 24px;
}
    /*
    .vehicle-selection-header h2,
    
    .vehicle-menu-header h2 {
        font-weight: 700;
        color: #1f2937;
        margin: 0 0 6px;
    }
        */

    .vehicle-selection-header p[b-w32c4g1z2g],
    .vehicle-menu-header p[b-w32c4g1z2g] {
        color: #6b7280;
        margin: 0;
    }


/* =========================
   Vehicle Card
   ========================= */

.vehicle-card[b-w32c4g1z2g] {
    position: relative;
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    padding: 10px;
    background: #fff;
    border: 1px solid #dee2e6;
    color: #343a40;
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    font-family: inherit;
}

    .vehicle-card:hover[b-w32c4g1z2g] {
        border-color: #007bff;
        background: #f8fbff;
        text-decoration: none;
        color: #343a40;
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(0, 123, 255, .06);
        /*
        border-color: #b9cdea;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
        transform: translateY(-2px);
            */
    }

    .vehicle-card:active[b-w32c4g1z2g] {
        transform: translateY(0);
    }


/* Image */

.vehicle-card-image[b-w32c4g1z2g] {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    background: #f8fafc;
    border-radius: 14px;
    overflow: hidden;
}

    .vehicle-card-image img[b-w32c4g1z2g] {
       
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


/* Content */

.vehicle-card-content[b-w32c4g1z2g] {
    min-width: 0;
    flex: 1;
}

.vehicle-card-title[b-w32c4g1z2g] {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.vehicle-card-subtitle[b-w32c4g1z2g] {
    color: #6b7280;
    line-height: 1.5;
}


/* Arrow */

.vehicle-card-arrow[b-w32c4g1z2g] {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    color: #9ca3af;
    background: #f8fafc;
    border-radius: 50%;
    transition: color .2s ease, background .2s ease;
}

.vehicle-card:hover .vehicle-card-arrow[b-w32c4g1z2g] {
    color: #2563eb;
    background: #eff6ff;
}


/* =========================
   Step 2 Header
   ========================= */

.vehicle-step-header[b-w32c4g1z2g] {
    margin-bottom: 28px;
}

.vehicle-back-button[b-w32c4g1z2g] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #6b7280;
    font-family: inherit;
    cursor: pointer;
    margin-bottom: 18px;
    transition: color .2s ease;
}

    .vehicle-back-button:hover[b-w32c4g1z2g] {
        color: #2563eb;
    }


/* Selected Vehicle */

.selected-vehicle[b-w32c4g1z2g] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 10px;
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
}

.selected-vehicle-image[b-w32c4g1z2g] {
    width: 90px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}


/* Icon */

.selected-vehicle-icon[b-w32c4g1z2g] {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    color: #1976d2;
    background: #eaf4ff;
    border-radius: 50%;
}


/* Content */

.selected-vehicle-content[b-w32c4g1z2g] {
    flex: 1;
    min-width: 0;
}

.selected-vehicle-label[b-w32c4g1z2g] {
    line-height: 1.3;
    color: #8a94a6;
    margin-bottom: 3px;
}

.selected-vehicle-name[b-w32c4g1z2g] {
    line-height: 1.4;
    font-weight: 600;
    color: #183b66;
}


/* Change */

.selected-vehicle-change[b-w32c4g1z2g] {
    border: 0;
    background: transparent;
    color: #1677d2;
    font-weight: 600;
    padding: 8px;
    cursor: pointer;
}

    .selected-vehicle-change:hover[b-w32c4g1z2g] {
        /* color: #125ca8; */
    }


/* =========================
   Step 2 Menu
   ========================= */

.vehicle-menu-header[b-w32c4g1z2g] {
    margin-bottom: 16px;
}

.vehicle-menu-list[b-w32c4g1z2g] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vehicle-menu-item[b-w32c4g1z2g] {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 17px 18px;
    background: #fff;
    border: 1px solid #dee2e6;
    color: #343a40;
    border-radius: 14px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s ease;
    /*
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        */
}

    .vehicle-menu-item:hover[b-w32c4g1z2g] {
        border-color: #007bff;
        background: #f8fbff;
        text-decoration: none;
        color: #343a40;
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(0, 123, 255, .06);
        /*
        border-color: #b9cdea;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
        transform: translateX(2px);
            */
    }

.vehicle-menu-content[b-w32c4g1z2g] {
    flex: 1;
    min-width: 0;
}

.vehicle-menu-title[b-w32c4g1z2g] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-weight: 600;
    color: #1f2937;
}

.vehicle-menu-subtitle[b-w32c4g1z2g] {
    margin-top: 4px;
    line-height: 1.5;
    color: #6b7280;
}


/* Arrow */

.vehicle-menu-arrow[b-w32c4g1z2g] {
    margin-left: 14px;
    color: #9ca3af;
    transition: color .2s ease;
}

.vehicle-menu-item:hover .vehicle-menu-arrow[b-w32c4g1z2g] {
    color: #2563eb;
}


/* Badge */

.vehicle-menu-badge[b-w32c4g1z2g] {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
    line-height: 1.2;
}

    .vehicle-menu-badge.primary[b-w32c4g1z2g] {
        color: #2563eb;
        background: #eff6ff;
    }

    .vehicle-menu-badge.success[b-w32c4g1z2g] {
        color: #15803d;
        background: #f0fdf4;
    }

    .vehicle-menu-badge.warning[b-w32c4g1z2g] {
        color: #b45309;
        background: #fffbeb;
    }


/* =========================
   Animation
   ========================= */

@keyframes vehicleStepIn-b-w32c4g1z2g {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

