/* styles.css */
/* Dark mode styles */
body.dark-mode {
    background-color: #333;
    color: #fff;
}

.form-control.dark-mode {
    background-color: #555;
    color: #fff;
}

/* Add more dark mode styles as needed */

/* styles.css */

/* Reduce spacing on smaller screens */
@media (max-width: 767px) {
    .form-group {
        margin-bottom: 10px; /* Adjust as needed */
    }

    .ingredient-label {
        margin-bottom: 5px; /* Adjust as needed */
    }
}

/* Increase font size on smaller screens */
@media (max-width: 767px) {
    body {
        font-size: 16px; /* Adjust as needed */
    }
}

h1 {
    font-size: 2.1rem;
}

.version {
    font-size: 0.7em;
}

/* Custom CSS to align the title to the bottom */
.align-bottom {
    vertical-align: bottom; /* Aligns the content to the bottom */
    /* margin-bottom: -5px !important; */
}

body {
    background-color: #f8f9fa; /* Light grey background */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.navbar {
    background-color: #ffffff; /* White background for navbar */
}
.nav-link {
    color: #6c757d; /* Grey color for links */
}
.nav-link:hover {
    color: #343a40; /* Darker grey on hover */
}
.content {
    flex: 1;
}
footer {
    background-color: #ffffff; /* White background for footer */
    padding: 20px 0;
    text-align: center;
    color: #6c757d;
    position: sticky;
    bottom: 0;
    width: 100%;
}

.footer-links a {
    color: #6c757d; /* Grey color for footer links */
    margin: 0 10px;
}
.footer-links a:hover {
    color: #343a40; /* Darker grey on hover */
}

footer p {
    margin-bottom: 0;
    padding-bottom: 0;
}
