@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Hind Siliguri', sans-serif;
}

body{
    background:#f4f6f9;
}

header{
    background:#0d6efd;
    color:white;
    padding:20px;
    text-align:center;
    font-size:24px;
    font-weight:600;
}

.container{
    width:95%;
    max-width:1100px;
    margin:30px auto;
}

.search-box{
    margin-bottom:20px;
    text-align:center;
}

.search-box input{
    width:100%;
    max-width:400px;
    padding:12px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:16px;
}

.table-container{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

table{
    width:100%;
    border-collapse:collapse;
}

th, td{
    padding:12px;
    text-align:left;
    border-bottom:1px solid #eee;
}

th{
    background:#f1f3f6;
    font-weight:600;
}

.price{
    font-weight:600;
    color:#198754;
}

footer{
    text-align:center;
    padding:15px;
    background:#212529;
    color:white;
    margin-top:40px;
    font-size:14px;
}

@media(max-width:768px){
    table thead{
        display:none;
    }
    table, tbody, tr, td{
        display:block;
        width:100%;
    }
    tr{
        margin-bottom:15px;
        background:#fff;
        padding:10px;
        border-radius:8px;
        box-shadow:0 2px 8px rgba(0,0,0,0.05);
    }
    td{
        border:none;
        padding:8px 0;
    }
}