.tw-filter-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:20px;
    padding:18px 22px;
    margin-bottom:24px;
}

.tw-filter-left{
    display:flex;
    align-items:center;
    gap:14px;
}

.tw-filter-right{
    display:flex;
}

.tw-action-booking{
    padding:24px;
}

.tw-action-booking p{
    margin:0 0 20px;
    color:#6B7280;
    font-size:15px;
}

.tw-action-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

/* ==========================================
   PAGINATION
========================================== */

.tw-pagination{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-top:24px;
}

.tw-page-btn{

    width:40px;

    height:40px;

    border:1px solid #E5E7EB;

    background:#fff;

    border-radius:12px;

    cursor:pointer;

    transition:.25s;

    font-weight:600;

}

.tw-page-btn:hover{

    background:#111;

    color:#fff;

}

.tw-page-btn.active{

    background:#111;

    color:#fff;

}

/* ==========================================
   BOOKING DETAIL
========================================== */

.tw-detail-action{
    display:flex;
    justify-content:flex-end;
    gap:14px;
    margin-top:24px;
}

.tw-btn-danger,
.tw-btn-warning,
.tw-btn-success{

    border:none;
    padding:14px 22px;
    border-radius:14px;
    font-family:'Poppins',sans-serif;
    font-weight:600;
    cursor:pointer;
    transition:.25s;

}

.tw-btn-danger{
    background:#EF4444;
    color:#fff;
}

.tw-btn-warning{
    background:#F59E0B;
    color:#fff;
}

.tw-btn-success{
    background:#16A34A;
    color:#fff;
}

.tw-btn-danger:hover,
.tw-btn-warning:hover,
.tw-btn-success:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}


.tw-detail-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-bottom:24px;
}

.tw-detail-card{
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    overflow:hidden;
}

.tw-detail-card.full{
    grid-column:1 / -1;
}

.tw-status-box{
    padding:24px;
}

.tw-action-group{
    display:flex;
    gap:16px;
    padding:24px;
    flex-wrap:wrap;
}

.tw-action-group .tw-btn-primary{
    flex:1;
    min-width:180px;
}

/* ==========================================
   PAYMENT
========================================== */

.tw-detail-card.full{

    grid-column:1 / -1;

}

.tw-btn-outline{

    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 22px;
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:14px;
    color:#111;
    font-weight:600;
    text-decoration:none;
    transition:.25s;

}

.tw-btn-outline:hover{

    background:#F8F8F8;

}

.tw-input{

    width:100%;
    height:48px;
    padding:0 16px;

    border:1px solid #E5E7EB;
    border-radius:12px;

    font-size:15px;
    font-family:inherit;

    background:#fff;

    line-height:48px;

    transition:.25s;

}

select.tw-input{

    appearance:auto;

}

.tw-input:focus{

    outline:none;
    border-color:#111;

}

.tw-detail-action{

    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:14px;
    padding:24px;

}

.tw-detail-item{

    display:grid;
    grid-template-columns:220px 1fr;
    gap:24px;
    align-items:center;
    padding:18px 24px;
    border-bottom:1px solid #F1F5F9;

}

.tw-detail-item:last-child{

    border-bottom:none;

}

.tw-detail-item label{

    font-weight:600;
    color:#374151;

}

.tw-detail-item span{

    font-weight:600;

    max-width:320px;

    text-align:right;

    word-break:break-word;

    overflow-wrap:anywhere;

}

.tw-card-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #F1F5F9;
}

.tw-card-header h3{
    margin: 0;
}

.tw-btn-payment{
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    min-height: 42px;
}

/* ==========================================
   BACK BUTTON
========================================== */

.tw-back-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:24px;
    color:#6B7280;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    transition:.25s;
}

.tw-back-link:hover{
    color:#111827;
    transform:translateX(-3px);
}

.tw-back-link i{
    font-size:13px;
}

.tw-summary-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-bottom:30px;

}

.tw-summary-card{

    padding:18px;

    border-radius:16px;

}

.tw-summary-card span{

    font-size:13px;

    margin-bottom:6px;

}

.tw-summary-card h3{

    margin:0;

    font-size:20px;

    font-weight:700;

    line-height:1.3;

}