body{
    background:#f5f7fb;
}

#medicineContainer{
    margin-top:30px;
}

.medicine-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.medicine-card:hover{
    transform:translateY(-5px);
}

.medicine-card img{
    width:100%;
    height:220px;
    object-fit:contain;
    background:#fff;
}

.card-body{
    padding:18px;
}

.card-title{
    font-weight:600;
}

.price{
    color:#198754;
    font-size:20px;
    font-weight:700;
}

.stock{
    color:#666;
    margin:10px 0;
}

.search-box{
    margin-bottom:25px;
}

.btn-view{
    width:100%;
    margin-top:12px;
}

.no-data{
    text-align:center;
    padding:50px;
    color:#777;
    font-size:22px;
}

@media(max-width:768px){

    .medicine-card img{
        height:170px;
    }

    .card-title{
        font-size:17px;
    }

    .price{
        font-size:18px;
    }

}