body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
	background-color: #333;
	color: #fff;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	max-height: 50px;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

nav li {
	margin: 0 10px;
}

nav a {
	color: #fff;
	text-decoration: none;
}

nav a:hover {
	text-decoration: underline;
}

main {
	padding: 20px;
    flex: 1;
}

h1 {
	margin-top: 0;
}

table {
	border-collapse: collapse;
	width: 100%;
}

th, td {
	border: 1px solid #ccc;
	padding: 10px;
	text-align: left;
}

th {
	background-color: #eee;
}

tr:nth-child(even) {
	background-color: #f2f2f2;
}
footer {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    margin-top: auto;
}
.recipe-box {
    display: inline-block;
    width: 300px;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    text-align: center;
}

.recipe-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}

.recipe-box h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.recipe-box p {
    font-size: 18px;
    margin-bottom: 10px;
}

.recipe-box .view-button {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
}

.recipe-box .view-button:hover {
    background-color: #0069d9;
}
.header-container {
    display: flex;
    align-items: center;
}

.logo-container {
    margin-right: 10px;
    
}

.logo-container img {
    max-height: 50px;
}

.text-container {
    font-size: 24px;
    white-space: nowrap;
}