*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}

body{
background:#f4f7fb;
padding:40px;
}

.container{
max-width:1200px;
margin:auto;
}

.page-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:35px;
}

.page-header h1{
font-size:40px;
color:#1f2937;
}

.back-btn{
text-decoration:none;
background:#0f766e;
color:#fff;
padding:12px 22px;
border-radius:10px;
font-weight:600;
transition:.3s;
}

.back-btn:hover{
background:#115e59;
}

.booking-details-card{
display:grid;
grid-template-columns:420px 1fr;
gap:35px;
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.booking-details-card img{
width:100%;
height:350px;
object-fit:cover;
border-radius:18px;
}

.details h2{
font-size:34px;
margin-bottom:20px;
}

.details p{
margin:12px 0;
font-size:17px;
color:#444;
}

.request-box{
margin:15px 0;
padding:18px;
background:#f8fafc;
border-radius:12px;
min-height:80px;
}

#packagePrice{
margin:25px 0;
font-size:34px;
color:#0f766e;
}

.status{
display:inline-block;
padding:10px 22px;
border-radius:30px;
font-weight:bold;
color:#fff;
margin-bottom:25px;
}

.pending{
background:#f59e0b;
}

.approved{
background:#16a34a;
}

.rejected{
background:#dc2626;
}

.action-buttons{
display:flex;
gap:15px;
}

.action-buttons button{
flex:1;
padding:15px;
border:none;
border-radius:12px;
cursor:pointer;
font-size:16px;
font-weight:bold;
}

#cancelBookingBtn{
background:#dc2626;
color:white;
}

#downloadInvoiceBtn{
background:#0f766e;
color:white;
}

#cancelBookingBtn:hover{
background:#b91c1c;
}

#downloadInvoiceBtn:hover{
background:#115e59;
}

@media(max-width:900px){

.booking-details-card{

grid-template-columns:1fr;

}

.page-header{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

.action-buttons{

flex-direction:column;

}

}
.avatar{

width:50px;

height:50px;

border-radius:50%;

background:#0F766E;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-weight:bold;

font-size:18px;

}