        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: #262626;
            color: #f0f0f0;
            text-align: center;
            background-image: url('pic4.png');
            background-size: cover;
            background-attachment: fixed;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        #patchlistContainer {
            margin: 20px;
            padding: 20px;
            background: rgba(20, 20, 20, 0.9);
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
            width: 80%;
            max-width: 800px;
        }

        .patchlistLine {
            margin-bottom: 15px;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .patchlistLine div {
            display: flex;
            align-items: center;
        }

        button {
            padding: 8px 12px;
            margin: 0 1px;
            border: 2px solid transparent;
            border-radius: 5px;
            color: white;
            background-color: #007bff;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            text-transform: uppercase;
        }
            
        .button-group {
            display: flex;
            justify-content: center;
        }


        button:hover {
            background-color: #0056b3;
            border-color: #fff;
            transform: scale(1.05);
        }
              

        .statusDot {
            height: 15px;
            width: 15px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .red { background-color: #ff4136; }
        .green { background-color: #2ecc40; }


        /* Stil für die Schriftgröße und das Aussehen von Überschriften */
        h1, h2, h3, h4, h5, h6 {
            color: #fafafa;
            font-weight: 600;
        }

        a {
            color: #0097e6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #00a8ff;
        }