/* styles.css */

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f2e7; /* Light cream background color */
    margin: 0;
    padding: 0;
}

#app {
    text-align: center;
    padding: 50px;
}

h1 {
    color: #4CAF50; /* Green color for a coffee vibe */
}

p {
    color: #6e5630; /* Brown color for text */
    max-width: 600px;
    margin: 0 auto 20px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: #4CAF50; /* Green color for links */
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #6e5630; /* Brown color on hover */
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: grid;
    grid-gap: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    resize: vertical;
}

button {
    background-color: #3498db;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #2070c0;
}

#responseContainer {
    margin-top: 20px;
    padding: 15px;
    background-color: #e0f7fa;
    border-radius: 4px;
}

a {
    display: block;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #2070c0;
}

.order-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.order-number {
    font-weight: bold;
    margin-right: 10px;
}

.button {
    background-color:  #008CBA;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.complete-button {
    background-color:#4CAF50;
}

.completed-button{
    background-color: rgb(32, 100, 18);
    cursor: not-allowed;
}

