
body {
    margin: 0;
    padding: 0;
    background-image: url('../images/background.png');
    background-repeat: no-repeat;
    background-size: 1580px 823px;
    width: 1580px;
    height: 823px;
    position: absolute;
    overflow: hidden;
  }
  .pipe { 
    position: absolute; 
    image-rendering: crisp-edges; 
  }
  .horizontal { height: 5px; }
  .vertical { width: 5px; }
  /* NEU: Bildgrößen anpassen */
  .pipe img {
    max-width: 100%;
    max-height: 100%;
    display: block;

  }
   /* Plant Container */
        .plant-container {
            position: relative;
            width: 1580px;
            height: 823px;
            margin: 0 auto;
            /* background: #aa3a3a; */
            border: 1px solid #333;
        }
        
        /* Silo Basis-Stile */
        .silo-1, .silo-2, .silo-3, .silo-4, .silo-5,
        .silo-6, .silo-7, .silo-8, .silo-9, .silo-10,
        .silo-11, .silo-12 {
            position: absolute;
            width: 60px;
            height: 132px;
            text-align: center;
            font-family: Arial, sans-serif;
            font-size: 12px;
            color: #333;
            padding: 5px;
            box-sizing: border-box;
            border: 1px solid #666;
            /* background: rgba(255, 255, 255, 0.85); */
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .silo-1 {height: 97px }
        .silo-3 {height: 183px }
        .silo-4 {height: 281px }
        .silo-5 {height: 281px }
        .silo-6 {height: 281px }
        .silo-7 {height: 281px }
        .silo-8 {height: 281px }
        
        /* Spezifische Positionen - WICHTIG: !important hinzufügen */
        .silo-1 { top: 154px !important; left: 114px !important; }
        .silo-2 { top: 154px !important; left: 184px !important; }
        .silo-3 { top: 154px !important; left: 254px !important; }
        .silo-4 { top: 154px !important; left: 324px !important; }
        .silo-5 { top: 154px !important; left: 394px !important; }
        .silo-6 { top: 154px !important; left: 464px !important; }
        .silo-7 { top: 154px !important; left: 534px !important; }
        .silo-8 { top: 154px !important; left: 604px !important; }
        .silo-9 { top: 264px !important; left: 835px !important; }
        .silo-10 { top: 264px !important; left: 905px !important; }
        .silo-11 { top: 264px !important; left: 975px !important; }
        .silo-12 { top: 264px !important; left: 1045px !important; }
     
        /* Innerhalb der Silo-Container */
        .silo-name {
            font-weight: bold;
            margin-bottom: 5px;
            font-size: 11px;
            color: #000;
        }
        
        .silo-spacer {
            height: 6px;
            display: block;
            /* Optional: Sichtbar machen für Debugging */
            /* background: rgba(255,0,0,0.1); */
        }
        
        .silo-daten {
            font-size: 10px;
            margin: 2px 0;
        }
        
        .silo-header {
            padding: 0px;
            box-sizing: border-box;
        }

        .silo-fill-area {
            position: absolute;
            bottom: 0px;
            left: 0px;
            right: 0px;
        }
        
        .last-update {
            position: absolute;
            bottom: 10px;
            right: 10px;
            font-size: 11px;
            color: #666;
            background: rgba(255, 255, 255, 0.8);
            padding: 3px 6px;
            border-radius: 3px;
        }