.btm-trip-card{
    cursor:pointer;
}

.btm-passenger-wrap{
    padding:24px 26px 32px;
}

.btm-passenger-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:20px;
}

.btm-passenger-title-wrap{
    display:flex;
    gap:14px;
    align-items:flex-start;
}

.btm-back-link{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    color:#2c3e55;
    text-decoration:none;
}

.btm-back-link:hover{
    background:#f3f5f8;
}

.btm-passenger-title-wrap h2{
    margin:0 0 6px;
    color:#2c3e55;
    font-size:24px;
    font-weight:800;
}

.btm-passenger-title-wrap p{
    margin:0;
    color:#627086;
}

.btm-passenger-search-row{
    margin-bottom:18px;
    max-width:320px;
}

.btm-passenger-table-wrap{
    background:#fff;
    border:1px solid #e5e8ef;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 18px rgba(44,62,85,.05);
}

.btm-passenger-table{
    width:100%;
    border-collapse:collapse;
}

.btm-passenger-table th,
.btm-passenger-table td{
    padding:18px 16px !important;
    border-bottom:1px solid #edf1f5;
    text-align:left;
    vertical-align:top;
}
.btm-passenger-table td  {
	border-bottom: unset;
}
.btm-passenger-table th{
    color:#5f6d82;
    font-weight:800;
    background:#fff;
}

.btm-passenger-table td strong{
    display:block;
    color:#1f2f45;
    margin-bottom:4px;
}

.btm-passenger-phone{
    display:flex;
    align-items:center;
    gap:4px;
    color:#6a778b;
    font-size:14px;
}

.btm-passenger-empty{
    text-align:center;
    color:#7c889c;
    padding:50px 20px !important;
}

.btm-payment-badge{
    display:inline-flex;
    align-items:center;
    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.btm-payment-badge.is-unpaid{
    background:#f5e6b8;
    color:#9b5a00;
}

.btm-payment-badge.is-paid{
    background:#d8f1de;
    color:#1f7a38;
}

.btm-row-actions{
    display:flex;
    gap:8px;
}
.btm-payment-badge.is-cancel{
    background:#fde2e2;
    color:#c62828;
    border:1px solid #f5bcbc;
}
.btm-payment-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.btm-payment-badge::before{
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:currentColor;
}
@media (max-width: 991px){
    .btm-passenger-header{
        flex-direction:column;
    }

    .btm-passenger-search-row{
        max-width:none;
    }

    .btm-passenger-table-wrap{
        overflow:auto;
    }

    .btm-passenger-table{
        min-width:980px;
    }
}