body {
            font-family: Arial, sans-serif;
            background-color: #000;
            color: #fff;
            margin: 0;
            padding: 20px;
        }
		
        .container {
            display: flex;
            gap: 20px;
        }
        .input-section {
            position: fixed;
            top: 20px;
            left: 20px;
            width: 45%;
        }
        textarea {
    width: 70%;
    height: 300px;
    background-color: #0b0a1e;
    color: #ffbf00;
    border: 1px solid #3b6dfb;
    padding: 10px;
    margin-bottom: 10px;
}
        .output-section {
            margin-left: 50%;
            width: 15%;
        }
        #output {
    background-color: #0f2117;
    border: 1px solid #48774b;
    padding: 10px;
    margin-top: 0px;
    margin-left: -60%;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 80vh;
    overflow-y: auto;
    color: #b4e300;width: 578px;
}
		
		#message-container {
  position: fixed;
  top: 380px;
  left: 570px;
  transform: translate(-50%, -50%);
  background-color: #002602;
  color: yellow;
  padding: 10px 14px;
  border-radius: 5px;
  font-size: 16px;
  transition: opacity 1.5s;
}

.message-hidden {
  opacity: 0;
  pointer-events: none;
}

.message-visible {
  opacity: 1;
}



.encodeText {
    background: linear-gradient(180deg, #3377ff 8.40%, #003fbd 34.94%, #002b80 52.05%, #002266 70.53%, #001a4d 92.95%, #3377ff 99.58%);
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-image 0.4s ease;
    position: relative;
    z-index: 1;
}

.encodeText::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, #ff961f 8.40%, #ad5400 34.94%, #703600 52.05%, #612c00 70.53%, #702d00 92.95%, #bd6500 99.58%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    border-radius: 5px;
}

.encodeText:hover::before {
    opacity: 1;
}



.copyToClipboard {
    background-image: linear-gradient(180deg, #dbd400 8.40%, #0c6600 34.94%, #084700 52.05%, #043800 70.53%, #0b2400 92.95%, #7a7200 99.58%);
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-image 0.4s ease;
    position: relative;
    z-index: 1;
}

.copyToClipboard::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
     background: linear-gradient(180deg, #ff961f 8.40%, #ad5400 34.94%, #703600 52.05%, #612c00 70.53%, #702d00 92.95%, #bd6500 99.58%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    border-radius: 5px;
}

.copyToClipboard:hover::before {
    opacity: 1;
}



.resetPage {
    background: linear-gradient(180deg, #ec0909 8.40%, #940000 34.94%, #70001c 52.05%, #66000f 70.53%, #420000 92.95%, #c70000 99.58%);
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 52px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-image 0.4s ease;
    position: relative;
    z-index: 1;
}

.resetPage::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, #ff961f 8.40%, #ad5400 34.94%, #703600 52.05%, #612c00 70.53%, #702d00 92.95%, #bd6500 99.58%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    border-radius: 5px;
}

.resetPage:hover::before {
    opacity: 1;
}


        .accordion {
            width: 600px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
			margin-top:25px;
			margin-left:-60%;
			margin-bottom:4px;
        }
        .accordion_title {
            cursor: pointer;
            padding: 3px 20px;
            background-color: #330f0f;
            color: #ffbf00;
            font-family: Verdana;
			font-size:15px;
            font-weight: bold;
            transition: background-color 0.9s ease;
            border-bottom: 1px solid #654878;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .accordion_title:hover {
            background-color: #662600;color:#ffbf00;
        }
        .accordion_title::after {
            content: ' 🡳 ';
            font-size: 12px;
            transition: transform 0.9s ease;color:#aa9aff;
        }
        .accordion_title.active::after {
            transform: rotate(180deg);color:#ff6969;
        }
        .accordion_content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.9s ease;
            padding: 0 20px;
            background-color: #000;
        }
        .accordion_content.active {
            max-height: 1000px; /* Großer Wert für flexible Höhe */
            padding: 10px 20px;
        }
        .accordion_content p {
            margin: 5px 0;
            font-family: Verdana;
			font-size:15px;
        }
        .accordion_content a {
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .accordion_content a:nth-child(1) { color: #a1abff; }
        .accordion_content a:nth-child(2) { color: #3498db; }
        .accordion_content a:nth-child(3) { color: #2ecc71; }
        .accordion_content a:hover {color: #fff; }
		
        @media (max-width: 600px) {
            .accordion {
                width: 100%;
            }
            .accordion_title {
                font-size: 14px;
            }
        }
		
		::-webkit-scrollbar {
  background: #000;
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: #050;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff0;
}
/* Scrollbar Handle ENDE */

/* Allgemeine Textauswahl */
::selection {
    color: #fff;
    background: #a93f3f;
}

/* Spezifische Textauswahl für Überschriften */
h1::selection {
    color: #fff;
    background: #660000;
}

h2::selection {
    color: #fff;
    background: #3498db;
}

h3::selection {
    color: #fff;
    background: #f88000;
}

h4::selection {
    color: #fff;
    background: #27ae60;
}

/* Textauswahl für Links */
a::selection {
    color: #fff;
    background: #f39c12;
}