
/* Vitasteed Kruidencatalogus CSS (v1) */
* { box-sizing: border-box; }
body {
  margin: 0;
  background-color: #25231F; /* vaste achtergrondkleur */
  color: #ddd;
  font-family: "Segoe UI", system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  gap: 12px;
  padding: 16px;
}

.header {
  width: min(1100px, 92vw);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
}

.header .title {
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
}

.control {
  display: flex;
  gap: 8px;
}

.control input, .control select {
  background: #2d2b26;
  color: #eee;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 10px 12px;
  outline: none;
  min-width: 220px;
  box-shadow: 0 0 10px #000;
}

.container {
  display: grid;
  grid-template-columns: 58% 42%;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  width: min(1100px, 92vw);
  height: 75vh;
}

.panel {
  border: 1px solid #444;
  background-color: #262626;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
  padding: 12px;
}

.left-frame {
  grid-column: 1/2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.left-frame img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.right-top { grid-column: 2/3; grid-row: 1/2; }
.right-bottom { grid-column: 2/3; grid-row: 2/3; }

h2 { margin: 0 0 8px; color: #fff; font-size: 1em; font-weight: 700; }
p, .plant-part { font-size: 1em; line-height: 1.6; }
.plant-part div { margin-bottom: 10px; }
.plant-part span { display: block; margin-top: 2px; color: #bbb; }
