body{
font-family:Arial;
background:#f5f7fa;
margin:0;
}

.booking-wrapper{
display:flex;
align-items:center;
justify-content:center;
height:100vh;
}

.booking-card{
background:white;
padding:40px;
border-radius:10px;
width:600px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

h1{
margin-top:0;
text-align:center;
}

.subtitle{
text-align:center;
color:#666;
margin-bottom:30px;
}

input,textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:5px;
margin-bottom:15px;
}

textarea{
height:100px;
}

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
}

.slots{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:10px;
margin-bottom:20px;
}

.slot{
padding:10px;
border:1px solid #ccc;
text-align:center;
cursor:pointer;
border-radius:5px;
}

.slot:hover{
background:#b08a5a;
color:white;
}

.slot.selected{
background:#b08a5a;
color:white;
}

button{
background:#b08a5a;
border:none;
color:white;
padding:14px;
font-size:16px;
width:100%;
border-radius:6px;
cursor:pointer;
}

button:hover{
background:#96724b;
}
