@font-face {
    font-family: 'Cursyger';
    src: url('cursyger.ttf') format('truetype');
}

/* background */
body {
    background-image: url("smileys03.gif");
    background-repeat: repeat;
    height: 2500px;
}



.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(254, 255, 0); /* Hintergrundfarbe */
    border: 2.5px solid black; /* Kontur des gesamten Popups */
    border-radius: 10px; /* Abgerundete Ecken */
    z-index: 1000;
    box-sizing: border-box; /* Box-Sizing um Paddings korrekt zu berücksichtigen */
    width: 500px; /* Feste Breite */
    overflow: hidden; /* Verhindert Überlaufen des Inhalts */
    box-shadow: 12px 12px 15px 1px rgba(0, 0, 0, 2);
}

.popup-header {
    position: relative;
    height: 35px; /* Höhe des oberen Bereichs */
    background-color: lime; /* Hintergrundfarbe des oberen Bereichs */
    border-top-left-radius: 8px; /* Abgerundete Ecken oben links */
    border-top-right-radius: 8px; /* Abgerundete Ecken oben rechts */
    border-bottom: 3px solid black; /* Untere Trennlinie */
}

.popup-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Vertikal zentriert */
    right: 10px; /* Platzierung innerhalb des limefarbenen Bereichs */
    width: 24px;
    height: 24px;
    background-color: black; /* Hintergrundfarbe des Schließen-Buttons */
    border-radius: 3px; /* Abgerundete Ecken für den Schließen-Button */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001; /* Überlagert die lime Leiste */
}

.popup-close a {
    display: block;
    text-decoration: none;
    font-size: 20px;
    color: rgb(254, 255, 0); /* Farbe des Schließen-Buttons */
    font-family: Arial, sans-serif; /* Ändert die Schriftart */
    line-height: 20px; /* Zentriert das 'X' vertikal */
}

.popup-symbol {
    cursor: pointer;
    font-size: 70pt;
    margin-left: 40px;
    margin-top: 170px;
}

.popup-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

pre {
    white-space: normal; /* Ermöglicht Umbruch des Textes innerhalb des pre-Tags */
    margin: 0;
    /* border-top: 1px solid black; */
    /* border-bottom: 3px solid black; */
    padding: 20px; /* Platz für die Trennlinien */
    box-sizing: border-box; /* Box-Sizing um Padding korrekt zu berücksichtigen */
}



/* BACK TO HOME BUTTON */
.back-to-main {
    position: absolute;
    top: 1px;
    left: 1px;
}
.back-to-main img {
    width: 90px;
    height: auto;
    transition: filter 0.5s ease; /* Übergang hinzufügen */
}

.back-to-main img:hover {
    filter: blur(4px); /* Blur-Filter beim Hover-Effekt hinzufügen */
}
/* BACK TO HOME BUTTON END */

h1 {
    color: #000000; /* Change as needed */
    font-size: 20px; /* Change as needed */
    margin-bottom: 20px; /* Change as needed */
    margin-top: 30px;
    font-family: 'Cursyger', monospace;
    text-indent: 1em;
    text-decoration: underline;
    background-color: lime;
    box-shadow: lime 4px 4px 20px 9px;
    display: inline-block;
}

::selection {
    background: rgb(254, 255, 0);
}

table.blueTable {
    font-family: monospace;
    font-weight: bold;
    background-color: #EE5CDC;
    width: 80%;
    text-align: left;
    border-collapse: collapse;
}
table.blueTable td, table.blueTable th {
    border: 4px solid #FEFF00;
    padding: 3px 2px;
    height: 50px; /* Adjust this value as needed */
}
table.blueTable tbody td {
    font-size: 16px;
    color: #000000;
    background-color: lime;
    box-shadow: lime 4px 4px 20px 9px;
}
table.blueTable tr:nth-child(even) {
    background: #F5D2F1;
}
table.blueTable thead {
    background: #FFFE00;
}
table.blueTable thead th {
    font-size: 45px;
    color: #000000;
    text-indent: 0.5em;
    margin-top: 50px;
}
table.blueTable tfoot td {
    font-size: 14px;
}
table.blueTable tfoot .links {
    text-align: right;
}
table.blueTable tfoot .links a {
    display: inline-block;
    background: #1C6EA4;
    color: #FFFE00; /* Change this to your desired color */
    padding: 5px 8px;
    border-radius: 5px;
}
table.blueTable a {
    color: #FFFE00; /* Change this to your desired color */
    font-weight: 200;
}

/* einzelne Text bearbeitungen */
tr.indented td {
    padding-left: 20px; /* Adjust this value to your liking */
}

/* Styles for the preview overlay */
.preview-overlay {
    position: absolute;
    width: 300px;
    height: 200px;
    background-color: white;
    border: 3px solid #FFFE00; /* Temporary border for visibility */
    z-index: 1000;
}

.preview-overlay iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.tags-container {
    margin-left: 170px;
    margin-top: -80px;
}

.tag {
    background-color: lime;
    color: black;
    padding: 5px 5px;
    margin: 2px;
    display: inline-block;
    border: 2px solid #000;
    border-radius: 0px;
    cursor: pointer;
    font-family: monospace;
    font-weight: bold;
    font-size: 11px;
    transition: background-color 0.6s, color 0.3s; /* Für weiche Übergänge */}

.tag:hover {
    background-color: yellow;
    
}

.tag.active {
    background-color: rgba(255, 255, 0, 0) !important;
    color: rgb(0, 0, 0);
}

.highlight {
    background-color: pink !important;
    font-family: 'Cursyger', monospace !important;  
    font-size: 12px !important;
    /* font-weight: 800 !important; */
}

