body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f3bfdc;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #2e7d32;
    text-align: center;
}

.produto-form {
    background-color: #f1f8e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#image-preview {
    text-align: center;
    margin: 15px 0;
}

#produto-img {
    max-width: 100px;
    max-height: 100px;
    border: 2px solid #2e7d32;
    border-radius: 8px;
    display: none;
}

select, input {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    width: 100%;
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.produto-card {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
}

.produto-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.total-section {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    text-align: right;
    font-weight: bold;
}