.btn-info-icon {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.btn-info-icon i {
    font-size: 15px;
    color: #dc3545;
    margin-top: 5px;
}

.btn-info-icon:focus,
.btn-info-icon:active {
    outline: none;
    box-shadow: none;
}

/* TAG KENDARAAN */
.kendaraan-row {
    display: inline-flex;
    align-items: center;
}

/* TOMBOL DELETE */
.btn-remove-kendaraan {
    border: none;
    background: #dc3545;
    /* merah */
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
}

.btn-remove-kendaraan:hover {
    background: #c82333;
}

/* BADGE KENDARAAN */
.kendaraan-row .badge {
    background-color: #3a3ab9;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
}