
@media (max-width: 767.98px) {
    .sidebar {
        display: none;
    }
    .main-content {
        height: auto;
    }
}

.main-content {
    height: calc(100vh - 100px);
    overflow-y: auto;
    background-color: #eee;
    border-radius: 20px 0 0 0;
    padding: 0px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.main-content::-webkit-scrollbar {
    width: 8px;
}

.main-content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.main-content::-webkit-scrollbar-track {
    background-color: #00000000;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.card-title {
    font-weight: bold;
}

.category {
    padding: 10px;
}

.order-btn {
    width: 50%;
    border-radius: 7px;
}

.price {
    width: 50%;
    float: left;
}

.category-btn {
    width: 100%;
    background-color: #eee;
    color: #000;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
}

.category-btn:hover {
    background-color: #ccc;
    color: #000;
}

hr {
    height: 1px;
    background-color: #ccc;
    border: none;
    margin: 1em 0;
}

.navbar {
    min-height: 100px; 
}

.navbar-brand {
    font-size: 30px;
}

.btn {
    background-color: #eee; 
    color: #000; 
    border: none;
    border-radius: 7px;
}

.btn:hover {
    background-color: #ccc;
    color: #000; 
}

.btn:focus {
    outline: none;
}