    body {
        padding-top: 70px;
        font-family: Verdana, sans-serif;
        font-size: 16px;
        color: #333;
        background-color: #fff;
    }

    .sidebar {
        background-color: #ffffff;
        padding: 15px;
        border-right: 1px solid #ddd;
        font-size: 20px !important;
		color:#333 !important;
    }

    .sub-category {
        margin-left: 15px;
        display: block;
        font-size: 16px !important;
    }

    .recipe-container {
        margin-bottom: 30px;
    }

    .recipe-title {
        font-weight: bold;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .recipe-category {
        font-style: italic;
        color: #00000;
        margin-left: 5px;
        margin-bottom: 15px;
    }

    .header-image {
        width: 100%;
        max-width: 700px;
        height: auto;
        display: block;
        margin: 0 auto 20px auto;
    }

    .ingredients, .instructions {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .ingredients ul {
        list-style-type: disc;
        margin-left: 20px;
    }

    .pagination a {
        margin: 0 5px;
        color: #337ab7;
        text-decoration: none;
    }

    .pagination a.active {
        font-weight: bold;
        text-decoration: underline;
    }

    .recipe-thumbnail {
        width: 50px;  /* Adjust the size of the image */
        height: auto;
        margin-right: 10px;  /* Space between the image and text */
        vertical-align: middle;  /* Align image with text */
    }

    .recipe-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
/* Css for today */
/* Body Styles */
body {
    padding-top: 70px;  /* Space for the navbar */
    font-family: Verdana, sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    margin-top: 0px; /* Reset any unwanted margins */
}

/* Sidebar Styles */
.sidebar {
    background-color: #ffffff;
    padding: 15px;
    border-right: 1px solid #ddd;
    font-size: 16px;
}

/* Recipe Styles */
.recipe-container {
    margin-bottom: 30px;
}
/* Recipe Styles */
.recipe-container {
    margin-bottom: 30px;
}

.recipe-container .ingredients, 
.recipe-container .instructions {
    font-size: 18px;  /* Adjust font size for readability */
    margin-bottom: 20px;
}

.recipe-container .ingredients ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Navbar Styles */
.navbar {
    background-color: black; /* Black background */
    padding: 15px 0;  /* Space above and below the navbar */
    margin-bottom: 0px; /* Ensure space below the navbar */
}

.navbar .container {
    display: flex;
    justify-content: space-between; /* Space out the logo and categories */
    align-items: center; /* Vertically align the items */
    width: 100%; /* Ensure the container stretches across the screen */
    max-width: 100%; /* Prevents overflow */
    padding-left: 15px; /* Space on the left */
    padding-right: 15px; /* Space on the right */
    box-sizing: border-box; /* Ensure padding is included within the container’s width */
}

.navbar .navbar-header {
    display: flex;
    align-items: center; /* Vertically align logo and links */
    padding: 0; /* Remove any unnecessary padding */
}

.navbar .navbar-brand img {
    max-width: 137px; /* Logo width */
    max-height: 84px; /* Logo height */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */
    padding: 0; /* Remove unnecessary padding */
}

.navbar .navbar-nav {
    display: flex;
    align-items: center; /* Vertically align navbar items */
    list-style-type: none; /* Remove default list styling */
}

.navbar .navbar-nav li {
    margin-right: 5px; /* Add space between navbar links */
}

.navbar a {
    color: white !important; /* White text for navbar links */
    font-size: 28px; /* Adjust font size */
    padding-left: 10px; /* Space between the logo and the next link */
}

.navbar-form .btn {
    background-color: white;
    color: black; /* Search button contrast */
}
.navbar {
    background-color: black;
    padding: 15px 0;
    position: fixed;
    top: 0; /* Keep it fixed at the top */
    width: 100%; /* Ensure the navbar takes up the full width */
    z-index: 20; /* Layer above content */
}
/* Navbar Styles */
.navbar {
    background-color: black; /* Black background */
    padding: 15px 0; /* Space above and below the navbar */
    position: relative; /* Ensures it's properly layered */
    z-index: 20; /* Ensure it's above other content */
}

/* Add space below navbar using the ::after pseudo-element */
.navbar::after {
    content: "";
    display: block;
    height: 20px !important; /* The space below the navbar */
}

/* Optional: Make sure the body margin or first section has no conflicting spacing */
body {
    margin-top: 0;
    padding-top: 0; /* Reset padding if necessary */
}
/* Navbar Styles */
.navbar {
    background-color: black; /* Black background */
    padding: 10px 0; /* Space above and below the navbar */
    position: relative; /* Ensures it's properly layered */
    z-index: 20; /* Ensure it's above other content */
}

/* Add space below navbar using the ::after pseudo-element */
.navbar::after {
    content: "";
    display: block;
    height: 20px; /* The space below the navbar */
}

/* Optional: Make sure the body margin or first section has no conflicting spacing */
body {
    margin-top: 0;
    padding-top: 0; /* Reset padding if necessary */
}
.navbar {
    background-color: black;
    padding: 15px 0;
    position: fixed;
    top: 0; /* Keep it fixed at the top */
    width: 100%; /* Ensure the navbar takes up the full width */
    z-index: 20; /* Layer above content */
}
/* updated css */
/* Navbar Styles */
.navbar {
    background-color: black;  /* Black background */
    padding: 10px 0;  /* Space above and below the navbar */
    position: fixed;  /* Keeps navbar fixed at the top */
    top: 0;  /* Position it at the top */
    width: 100%;
    z-index: 10;  /* Ensure it's above content */
    box-sizing: border-box;  /* Ensure padding is included in width */
}

/* Add space below the navbar using a container */
.container-under-navbar {
    background-color: white;  /* White background */
    padding: 10px 0;  /* Add padding to create space */
    width: 100%;
    box-sizing: border-box;
    margin-top: 100px;  /* Ensure it starts below the fixed navbar */
}

/* Image Styles */
.header-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
}
/* responsive nabar */
/* Make sure the navbar is fluid and doesn't overflow */
.navbar {
    margin-bottom: 0;
    border: none;
}

/* Ensure the search form stays aligned on the right for larger screens */
.navbar-form {
    float: right;
}

/* Adjust navbar links and search box for small screens */
@media (max-width: 768px) {
    .navbar-form {
        width: 100%;
        margin-top: 10px;
    }

    .navbar-form .form-group {
        margin-bottom: 10px;
		
		
    }
    .navbar-form input,
    .navbar-form button {
        width: 100%;

    }
}
/* New list */
.list-group {
    background-color: #fff; /* Change to white or your desired color */
    border-radius: 0; /* Optional: to remove rounded corners */
}

.list-group-item {
    background-color: #ffffff; /* Light color for individual items */
    border: 1px solid #ddd; /* Optional: add borders for separation */
}
@media print {
    /* Adjust font size for printing */
    .recipe-container .ingredients, 
    .recipe-container .instructions {
        font-size: 24px;  /* Adjust for print */
        line-height: 1.8;  /* Add some line height for readability */
    }

    .recipe-container .ingredients ul,
    .recipe-container .instructions ol {
        margin-left: 20px;  /* Adjust list indentation for print */
    }

    /* Optional: Ensure title is also bigger */
    .recipe-container .ingredients h3,
    .recipe-container .instructions h3 {
        font-size: 28px;  /* Larger title for print */
    }

    /* Remove any extra margin/padding for print */
    .recipe-container {
        margin: 0;
        padding: 0;
    }
    
    /* Optional: Add page breaks for long recipes */
    .recipe-container {
        page-break-after: always; /* Forces a page break after the recipe */
    }
}

