body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}
.panel {
  background-color: rgba(0, 0, 0, 0.85);
  border: 2px solid #ffa500;
  border-radius: 15px;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.panel-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box; /* Přidáno */
  padding: 10px 0; /* Přidáno */
}
.radiation-symbol {
  font-size: 30px;
  margin: 0 10px; /* Úprava pro zarovnání */
  color: #ffa500;
  flex-shrink: 0;
}
.panel-text {
  font-size: 20px;
  margin: 0;
  padding: 0;
  flex: 1; /* Přidáno */
}
.panel-value {
  font-size: 20px;
  padding: 5px 10px;
  border: 2px solid #ffa500;
  border-radius: 5px;
  background-color: #333333;
  flex: 1; /* Přidáno */
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
