.booking-contaner{
    margin-top:15px ;
    height: 450px;
    background: #FF8E00;
    border: 1px solid ;
    padding: 9px;
    border-radius: 14px 14px 0 0;
}
.booking-contan{
dusplay:flex;
flex-direction: column;
background: white;
align-content: space-between;

}
.category,.service,.employee{
    background: white;
    padding: 7px 10px ;
    margin-bottom: 6px;
    border-radius: 8px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.categorys{
    animation: fadeIn 0.8s ease-in-out;
}
.categorys h5,.service h4,.service h6{
    margin: 2px 0;
}
.services,.employee{
    max-height: 300px;
    overflow-y: auto;
}
.service,.employee{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.service span{
    color: #FF8E00;
    text-align: center;
    margin-left: 20px;
}
.service h6{
font-size: 13px;
}
.booking-button{
    display: flex;
    justify-content: space-between;
    background:#FF8E00;
    border-radius:0 0 14px 14px;
    border: 1px solid ;
}
.booking-button button{
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    margin:8px;
}
 @keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
 }
.img-loading{
    display: none;
}
.loading .img-loading{
display: block;
animation: spin 0.5s linear infinite reverse;
position: relative;
    top:calc(50% - 25px);
    right: calc(50% - 25px);
    width: 50px;
    margin: 0;
    padding: 0;
}
.loading{
opacity: 0.2;
}
.time{
    background: #F8FFF5;
    border-radius: 5px;
    padding: 15px 30px;
}
.times{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-around;
    max-height: 380px;
    overflow-y: scroll;
}
.times::-webkit-scrollbar{
    display: none;
}