body {
            font-family: "Tektur", sans-serif;
            margin: 20px;
            color: #333;
            background-color: #f9f9f9;
    
        }
        h1 {
            font-family: "Tektur", sans-serif;
            color: #333;
            margin-bottom: 10px;
        }
        input, button {
            padding: 8px;
            margin: 4px 0;
            width: calc(100% - 22px);
            box-sizing: border-box;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
        }
        button {
            background-color: #8642E4;
            color: white;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        button:hover {
            background-color: #8642E4;
        }
        .result {
            background-color: #ffffff;
            padding: 10px;
            margin-bottom: 5px;
            border-left: 4px solid #8642E4;
            font-family: monospace;
            white-space: pre-wrap;
            word-wrap: break-word;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .no-results {
            color: red;
            font-weight: bold;
            margin-top: 10px;
        }
        /* Neuer Zurück-Button als Textlink */
        .back-link {
            display: inline-block;
            margin-bottom: 20px;
            color: #8642E4;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            transition: color 0.2s;
            float: right;
        }
        .back-link:hover {
            color: #8642E4;
            text-decoration: underline;
        }
        label {
            font-weight: bold;
            display: block;
            margin-bottom: 4px;
            font-size: 14px;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        th, td {
            padding: 12px;
            border: 1px solid #ddd;
            text-align: left;
        }
        th {
            background-color: #f4f4f4;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        a {
            text-decoration: none;
            color: #8642E4;
        }
        a:hover {
            text-decoration: underline;
        }
#results {
            border: 1px solid #ccc;
            max-height: 200px;
            overflow-y: auto;
        }
.result-item {
            padding: 5px;
            cursor: pointer;
        }
.result-item:hover {
            background-color: #f0f0f0;
        }

table {
    width: 100%;
    border-collapse: collapse; /* Grenzen der Tabelle zusammenführen */
}

td, th {
    padding: 8px;
    vertical-align: middle; /* Vertikale Ausrichtung */
}

.delete-btn {
    background-color: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center; /* Vertikal im Button ausrichten */
    justify-content: center;
    height: 100%; /* Höhe auf die Zellenhöhe setzen */
}

.delete-btn img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.result-item {
    height: 40px; /* Höhe der Tabellenzeile festlegen */
}






.fixed-image {
    position: fixed;
    z-index: 1000; /* Stellt sicher, dass das Bild immer oben ist */
    width: 100px; /* Gleiche Größe für beide Bilder */
    height: auto;
}

.fixed-image1 {
    top: 10px;
    left: 10px; /* Erstes Bild bleibt links oben */
}

.fixed-image2 {
    top: 20px;
    left: 130px; /* Zweites Bild wird neben dem ersten Bild angezeigt */
}

.fixed-image img {
    position: absolute;
    width: 100%; /* Damit beide Bilder gleich groß sind */
    height: auto;
    transition: opacity 0.5s ease; /* Sanfter Übergang mit einer halben Sekunde */
    opacity: 1; /* Beide Bilder sind standardmäßig sichtbar */
}

.fixed-image .image-hover {
    opacity: 0; /* Das Hover-Bild ist anfangs unsichtbar */
}

.fixed-image:hover .image-hover {
    opacity: 1; /* Das Hover-Bild wird beim Hover sichtbar */
            transform: rotate(360deg); 

}






/* Button purple */
.btn-primary {
    background-color: #8642E4 !important;
    border-color: #8642E4 !important;
    color: #ffffff !important;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #6d36b3 !important; /* Etwas dunklere Farbe beim Hover */
    border-color: #6d36b3 !important;
}





.btn-outline-primary {
    color: #8642E4 !important;
    border-color: #8642E4 !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline-primary:hover {
    background-color: #8642E4 !important;
    color: #ffffff !important;
}