:root {
    --background-color: #000000;
    --container-background: #ffffff;
    --table-header-background: #f4f4f4;
    --table-border-color: #ddd;
    --button-background: #5c6166;
    --button-light-2: #cccccc8a;
    --button-border-light: #ccc;
    --button-hover: #0056b3;
    --button-hover-light: #f0f0f0;
    --hover-1: #0056b3;
    --text-color: #000000;
    --link-color: #08129f;

    

}

/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}


a {

    text-decoration: none;
    cursor: pointer;
  
}



.container {
    max-width: 800px;
    margin: 120px auto 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .container {
        margin: 90px auto 20px auto;
        border-radius: 0px;
    }
        
}

.Library-img{
    margin-bottom: 10px;
}
/* Tabelle */
.details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

/* Allgemeine Definition für Links */
.details-table a {
    text-decoration: none; /* Entfernt den Unterstrich */
    color: var(--link-color); 
    cursor: pointer;
}

/* Hover-Effekt für Links */
.details-table a:hover {
    text-decoration: underline; /* Unterstrich beim Hover */
    color: var(--hover-1); /* Beispiel-Farbe beim Hover */
    transform: scale(1.03);
}

.details-table th,
.details-table td {
    border: 1px solid var(--table-border-color);
    padding: 10px;
}

.details-table th {
    background-color: var(--table-header-background);
    text-align: left;
}

.download-link{
   line-height: 1.5;
}

/* Hashtags */
.hashtags a {
    color: inherit; /* Behält die Standardfarbe des Textes bei */
    text-decoration: none;
    cursor: pointer;
    border-color: var(--button-light-2);
    background-color: var(--button-light-2);
    border: 1px solid #ccc; /* Leichter Rand */
    border-radius: 5px;
    padding: 3px 6px;
    font-size: 12px;
    margin: 1px; /* Abstand zwischen den Hashtags */
    display: inline-block; /* Stellt sicher, dass der Abstand angewendet wird */
}

.hashtags a:hover {
    color: var(--hover-1); /* Blau bei Hover */
    text-decoration: underline;
}

/* Zurück-Button */
.back-button {
    display: block;
    margin: 20px auto 0; /* Zentriert den Button */
    padding: 10px 20px;
    background-color: var(--button-background);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    max-width: 200px;
    text-transform: uppercase;
}

.back-button:hover {
    background-color: #000000c0;
    transform: scale(1.03);
}



/* Allgemeines Styling für Buttons */
button.share-button,
button#copyButton {
    padding: 6px 9px;
    font-size: 14px;
    margin-right: 5px;
    border: 1px solid #ccc; /* Leichter Rand */
    border-radius: 5px;
    cursor: pointer;
    background-color: #fff; /* Weißer Hintergrund */
    color: #000; /* Schwarzer Text */
    transition: background-color 0.3s ease, color 0.3s ease;
    appearance: none; /* Entfernt native Browser-Styling */
}

/* Hover-Effekt für beide Buttons */
button.share-button:hover,
button#copyButton:hover {
    background-color: #f0f0f0; /* Leichtes Grau beim Hover */
    color: #000; /* Text bleibt schwarz */
}

/* Temporär deaktivierter Copy-Button */
button#copyButton:disabled {
    background-color: #4e7fc0a5; /* Hellgrauer Hintergrund */
    color: #000000; 
    cursor: not-allowed;
}