:root {
  --vegmeal-green: #4caf50;
  --vegmeal-white: #fff;
  --vegmeal-text: #333;
  --vegmeal-border: #ddd;
  --vegmeal-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  --vegmeal-radius: 10px;
  --vegmeal-padding: 20px;
}

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

.vegmeal-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: var(--vegmeal-padding);
  flex-wrap: wrap;
}

.vegmeal-left, .vegmeal-right {
  width: 43%;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--vegmeal-white);
  border-radius: var(--vegmeal-radius);
  box-shadow: var(--vegmeal-shadow);
}

.vegmeal-left::-webkit-scrollbar, .vegmeal-right::-webkit-scrollbar {
  width: 5px;
}
.vegmeal-left::-webkit-scrollbar-thumb, .vegmeal-right::-webkit-scrollbar-thumb {
  background: var(--vegmeal-green);
  border-radius: 10px;
}

.vegmeal-table {
  width: 100%;
  border-collapse: collapse;
}
.vegmeal-table th, .vegmeal-table td {
  border: 1px solid var(--vegmeal-border);
  padding: 10px;
  text-align: center;
  color: var(--vegmeal-text);
}
.vegmeal-table th {
  background: var(--vegmeal-green);
  color: var(--vegmeal-white);
}

.vegmeal-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--vegmeal-green);
}

.vegmeal-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vegmeal-item img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
}

.vegmeal-summary {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--vegmeal-white);
  padding: 15px 20px;
  border-radius: var(--vegmeal-radius);
  box-shadow: var(--vegmeal-shadow);
  width: 220px;
}

.vegmeal-summary button {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: var(--vegmeal-green);
  color: var(--vegmeal-white);
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.vegmeal-summary button:hover {
  background: #388e3c;
}
.vegmeal-summary button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 766px) {
  .vegmeal-left, .vegmeal-right {
    width: 100%;
    max-height: 60vh;
  }
  .vegmeal-container {
    flex-direction: column;
    align-items: center;
  }
}
