.booking-wrapper{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

.booking-title{
text-align:center;
margin-bottom:40px;
font-size:32px;
}

.booking-container{
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.step-title{
margin-top:30px;
margin-bottom:15px;
font-weight:600;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.service-card{
border:1px solid #eee;
padding:20px;
text-align:center;
cursor:pointer;
border-radius:8px;
transition:0.2s;
}

.service-card:hover{
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.service-card.active{
border:2px solid #c79a5f;
}

.service-icon{
font-size:30px;
margin-bottom:10px;
}

.employee-grid{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.employee-card{
border:1px solid #ddd;
padding:10px 20px;
cursor:pointer;
border-radius:6px;
}

.employee-card.active{
background:#c79a5f;
color:white;
}

.date-grid{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:10px;
}

.date-card{
padding:10px 15px;
border:1px solid #ddd;
cursor:pointer;
border-radius:6px;
}

.date-card.active{
background:#c79a5f;
color:white;
}

.slots-grid{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:10px;
}

.slot-card{
padding:10px 15px;
border:1px solid #ddd;
cursor:pointer;
border-radius:6px;
}

.slot-card.active{
background:#c79a5f;
color:white;
}