body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

h1,
h2 {
    text-align: center;
    color: #5a5a5a;
}

h1 {
    margin-top: 20px;
    font-size: 2.5em;
}

h2 {
    margin-top: 30px;
    font-size: 2em;
}

div {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    font-size: 1em;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}

li:last-child {
    border-bottom: none;
}

p {
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
}

.beverage-name {
    font-family: 'Georgia', serif;
    font-weight: bold;
    width: 200px;
}

.description {
    font-family: 'Arial', sans-serif;
    text-indent: 0;
    flex: 1;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
    color: #007bff;
}

#submit-button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    display: block;
    margin: 20px auto 0 auto;
    margin-bottom: 20px;
}

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

.plus-button,
.minus-button {
    background: #e0e7ff;
    border: none;
    color: #3b3b98;
    font-size: 1.3em;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;

    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(59, 59, 152, 0.08);

}

.plus-button:hover,
.minus-button:hover {
    background: #b2bfff;
    color: #222266;

}

.counter {
    min-width: 36px;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #3b3b98;
    background: #f4f4f9;
    border-radius: 6px;
    display: inline-block;
}

.beverage-name,
.description {
    display: block;
    width: 100%;
}

li {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.plus-button,
.minus-button {
    width: 28px;
    height: 28px;
    font-size: 1.1em;
    margin: 5px;
}

.counter {
    min-width: 28px;
    font-size: 1em;
    margin: 6px 0 0 0;
}

.beverage-note {
    width: 100%;
    margin-top: 6px;
    padding: 6px;
    font-size: 0.95em;
    border: 1px solid #ccc;
    border-radius: 4px;

}