body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: #00aa25;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start; /* Inhalte oben ausrichten */
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

::-webkit-scrollbar {
    display: none;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5em;
    margin: 20px 0 10px 0; /* Einheitlicher Abstand nach oben und unten */
    color: #00aa25;
    padding-top: 20px; /* Zusätzlicher Abstand nach oben */
}

/* Tab Navigation */
.tabs {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0; /* Entferne den unteren Randabstand */
    background-color: rgba(51, 51, 51, 0.3); /* Grauer Hintergrund mit 30% Transparenz */
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    backdrop-filter: blur(3px); /* Unschärfe-Effekt für den Hintergrund */
    -webkit-backdrop-filter: blur(3px); /* Unschärfe-Effekt für Safari */
    border: 2px solid rgba(0, 170, 37, 0.3); /* Noch durchsichtigere grüne Umrandung */
    box-shadow: 0 0 2px rgba(0, 170, 37, 0.6), 0 0 4px rgba(0, 170, 37, 0.4); /* Sehr subtile Leuchteffekt */
}

.tabs + .tabs {
    margin-top: 5px; /* Reduziere den Abstand zwischen den beiden Navigationsleisten */
}

.tablinks {
    background-color: #00aa25;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: inline-block;
    border-radius: 4px;
    margin: 5px;
}

.tablinks:hover, .tablinks.active {
    background-color: #008f1f;
    box-shadow: 0 0 8px rgba(0, 170, 37, 0.8), 0 0 16px rgba(0, 170, 37, 0.6); /* Stärkerer Glow-Effekt beim Hover */
}

.tabcontent {
    display: none;
    margin-top: 20px;
}

.image-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-top: 15px;
}

.image-container {
    flex: 1 1 calc(33.333% - 40px);
    max-width: calc(33.333% - 40px);
    background-color: #333;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 170, 37, 0.6), 0 0 30px rgba(0, 170, 37, 0.4), 0 0 45px rgba(0, 170, 37, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.image-container img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}

#assets .image-container img,
#trinity .image-container img,
#clifford .image-container img,
#gif-emojis .image-container img {
    height: 200px;
    object-fit: cover;
}

#emojis .image-container img {
    height: auto;
    object-fit: contain;
}

.image-name {
    color: #00aa25;
    font-size: 1em;
    margin: 10px 0;
    word-wrap: break-word;
}

.copy-button, .download-button, .preview-button {
    background-color: #00aa25;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.copy-button:hover, .download-button:hover, .preview-button:hover {
    background-color: #008f1f;
    box-shadow: 0 0 8px rgba(0, 170, 37, 0.8), 0 0 16px rgba(0, 170, 37, 0.6);
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

footer {
    text-align: center;
    padding: 10px 0;
    color: gray;
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 14px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center; /* Horizontal zentrieren */
    align-items: center; /* Vertikal zentrieren */
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%; /* Verhindert, dass das Bild zu groß wird */
    max-height: 90%; /* Verhindert, dass das Bild zu groß wird */
    box-shadow: 0 0 15px rgba(0, 170, 37, 0.6), 0 0 30px rgba(0, 170, 37, 0.4), 0 0 45px rgba(0, 170, 37, 0.2); /* Optionaler Schatten */
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 101; /* Sicherstellen, dass der Close-Button über dem Bild liegt */
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}



