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

.main-container {
  display: flex;
  height: 100vh;
  box-sizing: border-box;
}

/* Linker Bereich mit zwei Reihen */
.left-section {
  flex: 2;
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
}

/* Obere und untere Zeile jeweils 50% */
.top-row, .bottom-row {
  flex: 1;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

/* Inhalt innerhalb der Zeilen */
#sp-position7, #weatherForecast,
#news, .qr-wrapper {
  flex: 1;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

#weatherForecast {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.day {
  text-align: center;
}

#news ul {
  padding-left: 20px;
}

.qr-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#qrcode {
  margin-bottom: 10px;
}

/* Rechte Spalte */
#imageAndLinksContainer {
  flex: 1;
  padding: 10px;
  background-color: #e9ecef;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
  box-sizing: border-box;
}
