/* PAGE */

.vehicle-type-page{
    display:flex;
    align-items:flex-start;
    gap:24px;
    padding-left:48px;
    padding-top:24px;
    flex-wrap:nowrap;
}

/* LEFT CARD */

.vehicle-type-card{
    width:403px;
    border-radius:6px;
    padding:13px 16px 16px;
    box-shadow:0 4px 14px rgba(0,0,0,.08);
    background:#fff;
    flex-shrink:0;
}

/* RADIO */

.vehicle-type-radio-group{
    display:flex;
    gap:20px;
    margin-bottom:18px;
}

.vehicle-type-radio-label{
    display:flex;
    align-items:center;
    gap:5px;
    font-size:13px;
    color:#222;
    cursor:pointer;
}

.vehicle-type-radio-label input[type="radio"]{
    width:15px;
    height:15px;
    accent-color:#1f6ff2;
    cursor:pointer;
}

/* HEADER */

.vehicle-type-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:10px;
}

.vehicle-type-title{
    margin:0;
    font-size:18px;
    font-weight:400;
    color:#111;
}

/* PLUS BUTTON */

.vehicle-type-add-btn{
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#e89a31;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:16px;
}

/* TABLE */

.vehicle-type-table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

.vehicle-type-table th{
    height:28px;
    border:1px solid #c8c8c8;
    background:white;
    font-size:12px;
    text-align:center;
    font-weight:600;
}

.vehicle-type-table td{
    height:28px;
    border:1px solid #c8c8c8;
    background:white;
    font-size:12px;
}

.vehicle-type-table td:first-child{
    padding-left:6px;
}

.vehicle-type-table th:first-child{
    width:245px;
}

.vehicle-type-table th:last-child{
    width:120px;
}

.vehicle-type-table td:last-child{
    text-align:center;
}

.bi-pencil-square{
    color:#e89a31;
    cursor:pointer;
}

/* RIGHT FORM */

.vehicle-form-card{
    width:280px;
    height:352px;
    background:#fff;
    border:1px solid #d7d7d7;
    border-radius:12px;
    padding:22px 14px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    flex-shrink:0;
    display:none;
}

.vehicle-form-card.show{
    display:block;
}

/* FORM HEADER */

.vehicle-form-header{
    position:relative;
    text-align:center;
    margin-bottom:16px;
}

.vehicle-form-header h2{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#111;
}

/* CLOSE BUTTON */

.vehicle-close-btn{
    position:absolute;
    right:0;
    top:0;
    border:none;
    background:none;
    color:#e89a31;
    cursor:pointer;
    font-size:20px;
}

/* INPUT */

.vehicle-input{
    width:100%;
    height:34px;
    border:1px solid #9bbcff;
    border-radius:4px;
    padding:0 8px;
    font-size:13px;
    margin-bottom:18px;
    box-sizing:border-box;

    box-shadow:0 0 0 3px rgba(31,111,242,.18);
}

.vehicle-input:focus{
    outline:none;
    border-color:#1f6ff2;
    box-shadow:0 0 0 3px rgba(31,111,242,.25);
}

/* BUTTON AREA */

.vehicle-form-actions{
    display:flex;
    justify-content:center;
    gap:16px;
}

/* SAVE BUTTON */

.save-btn-type{
    border:none;
    background:#f0b400;
    color:#000;
    padding:7px 16px;
    border-radius:4px;
    cursor:pointer;
    font-size:14px;
    font-weight:500;
}

.save-btn-type:hover{
    background:#e2aa00;
}

/* CANCEL BUTTON */

.cancel-btn{
    border:none;
    background:#6c757d;
    color:#fff;
    padding:7px 16px;
    border-radius:4px;
    cursor:pointer;
    font-size:14px;
}

.cancel-btn:hover{
    background:#5b646b;
}