.page-title {
    text-align: center;
    margin: 20px 0;
    font-size: 24px;
    color: #222;
}

.recipe-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

.recipe-card {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
    background: #fdfdfd;
    cursor: pointer;
    transition: transform 0.2s;
}

.recipe-card:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

.recipe-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #ccc;
}

.recipe-card h3 {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

.recipe-card a {
    text-decoration: none;
    color: inherit;
}

.recipes-button-container {
    display: flex;
    justify-content: center;
    margin: 10px;
    flex-wrap: wrap;
}

.recipe-button {
    text-align: center;
    padding: 12px 30px;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 10px;
}

.veg {
    background-color: green;
}

.non-veg {
    background-color: red;
}

.all {
    background-color: #007bff;
}