/*========================================
BOOKING DETAILS
========================================*/

.booking-details-section{
    background:#f5f7fb;
    padding:70px 0;
    min-height:100vh;
}

.booking-details-wrapper{
    max-width:950px;
    margin:auto;
}

.booking-details-card{

    background:#fff;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    overflow:hidden;

}

.booking-details-header{

    background:#17314b;
    color:#fff;
    padding:30px 40px;

}

.booking-details-header h1{

    margin:0;
    font-size:34px;
    font-weight:700;

}

.booking-number{

    margin-top:8px;
    opacity:.9;
    font-size:16px;

}

.booking-table{

    width:100%;
    border-collapse:collapse;

}

.booking-table tr{

    border-bottom:1px solid #eee;

}

.booking-table th{

    width:35%;
    padding:18px 35px;
    background:#fafafa;
    color:#17314b;
    text-align:left;
    font-weight:600;

}

.booking-table td{

    padding:18px 35px;
    color:#555;

}

.booking-table tr:hover{

    background:#fafafa;

}

/* Status Badges */

.badge{

    display:inline-block;
    padding:7px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;

}

.badge-confirmed{

    background:#d4edda;
    color:#155724;

}

.badge-pending{

    background:#fff3cd;
    color:#856404;

}

.badge-paid{

    background:#d1ecf1;
    color:#0c5460;

}

.badge-unpaid{

    background:#f8d7da;
    color:#721c24;

}

/* Amount */

.booking-total{

    color:#c99717;
    font-size:24px;
    font-weight:700;

}

/* Buttons */

.booking-actions{

    padding:30px 35px;
    display:flex;
    gap:15px;

}

.booking-btn{

    display:inline-block;
    background:#c99717;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.booking-btn:hover{

    background:#17314b;
    color:#fff;

}

.booking-btn-secondary{

    background:#17314b;

}

.booking-btn-secondary:hover{

    background:#102133;

}

/* Responsive */

@media(max-width:768px){

.booking-details-header{

padding:25px;

}

.booking-details-header h1{

font-size:28px;

}

.booking-table th,
.booking-table td{

display:block;
width:100%;
padding:15px 20px;

}

.booking-table th{

background:#17314b;
color:#fff;

}

.booking-actions{

flex-direction:column;

}

.booking-btn{

width:100%;
text-align:center;

}

}