.dish-card {
    transition: transform 0.3s;
    cursor: pointer;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.price {
    color: #28a745;
    font-size: 1.5rem;
    font-weight: bold;
}

.category-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.navbar-brand i {
    margin-right: 10px;
}

.btn-primary {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
}