body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Max width for mobile view */
    margin: 20px;
    box-sizing: border-box;
    min-height: 100vh;
}

.logo {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.6rem;
    border-radius: 3rem;
}

.logo svg {
    width: 24px;
    height: auto;
    stroke: white;
}

h1 {
    font-size: 1.6rem;
    line-height: 1;
    text-align: center;
    color: #fff;

}

.input-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    min-height: 15vh;
    box-sizing: border-box;
}

.text svg {
    stroke: gray;
    width: 1rem;

}

.text .text-icon {
    float: left;
    padding: .3rem;
    background-color: rgba(204, 204, 204, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3rem;
    margin: 0 .5rem .2rem  0;


}

.text p {

    line-height: 1.6rem;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-item {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.product-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

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

.product-details h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1em;
}

.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-control button {
    background-color: #28a745;
    padding: 5px 10px;
    font-size: 1em;
    margin: 0 5px;
}

.quantity-control button.decrease {
    background-color: #dc3545;
}

.quantity-control span {
    font-size: 1.1em;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}