body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fdfbf7;
    border-bottom: 1px solid #e0e0e0;
}

nav img {
    height: 100px;
    margin-right: 200px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

.cart {
    display: flex;
    align-items: center;
    gap: 5px;
}

.container {
    width: 60%;
    margin: auto;
    padding: 20px;
}

form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input, button {
    width: 95%;
    padding: 10px;
    margin-top: 5px;
}

button {
    background-color: #444;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

button:hover {
    background-color: #666;
}

#results {
    text-align: left;
    margin-top: 20px;
}

.product {
    background: #fff;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.product img {
    width: 100px;
    height: auto;
    margin-right: 15px;
}

.product-info {
    flex-grow: 1;
}
