body {
  margin: 0;
  background: black;
  font-family: Arial, Helvetica, sans-serif;
}

.lcars-grid {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  height: 100vh;
  gap: 12px;
  padding: 12px;
}

.lcars-column {
  background: #000;
  border-radius: 0 0 50px 0;
  padding: 14px;
}

.lcars-column.right {
  background: #000;
  border-radius: 0 0 0 50px;
}


.scroll {
  overflow-y: auto;
}

.section {
  margin-bottom: 20px;
}

.title {
  background: #ff9900;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 6px;
}

a {
  display: block;
  background: #ff6600;
  color: black;
  text-decoration: none;
  margin-bottom: 6px;
  font-weight: bold;
  padding: 5px 10px;     /* schmaler */
  font-size: 0.85rem;    /* etwas kleiner */
  line-height: 1;
  border-radius: 22px;   /* flacher als vorher */
}

a:hover {
  filter: brightness(1.2);
}

.lcars-center {
  background: #1a1a1a;
  border-radius: 50px;
  padding: 16px;
}

.panel {
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
}

.panel-title {
  font-weight: bold;
  margin-bottom: 8px;
}

img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 10px;
}

input {
  width: 100%;
  padding: 8px;
  border-radius: 20px;
  border: none;
  background: black;
  color: #ff9900;
}

.lcars-group {
  margin-bottom: 3px;
}

.lcars-group summary {
  list-style: none;
  cursor: pointer;
  background: #ff6600;
  color: black;
  font-weight: bold;
  margin-bottom: 3px;
  padding: 5px 10px;     /* schmaler */
  font-size: 0.85rem;    /* etwas kleiner */
  line-height: 1;
  border-radius: 22px;   /* flacher als vorher */
}

.lcars-group summary::after {
  content: " ▸";
  float: right;
}

.lcars-group[open] summary::after {
  content: " ▾";
}

.lcars-group a {
  margin-left: 16px;
  background: #cc3300;
}

/* ===== FORCE 2-COLUMN CAMERA GRID ===== */

.lcars-center .camera-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px;
}

.lcars-center .camera-grid .cam {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* ===== LCARS LINK GRID – 4 COLUMNS ===== */

.link-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 10px;
}

.link-grid-4 img {
  background: #1a1a1a;
  width: auto;
  height: 50px;
  border-radius: 8px;
  display: block;
}

.link-grid-4 a {
  background: #1a1a1a;
  width: auto;
  height: 50px;
  border-radius: 8px;
  display: block;
}

/* ===== LCARS LINK GRID – 5 COLUMNS ===== */

.link-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0px;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 10px;
}

.link-grid-5 img {
  background: #1a1a1a;
  width: auto;
  height: 50px;
  border-radius: 8px;
  display: block;
}

.link-grid-5 a {
  background: #1a1a1a;
  width: auto;
  height: 50px;
  border-radius: 8px;
  display: block;
}

/* ===== LCARS INFO GRID – 1 COLUMNS ===== */

.info-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;

  color: white;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 10px;
}

.info-grid img {
  background: #1a1a1a;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
