/* static/css/style.css - Konsolidierte Version (VOLLSTÄNDIG) */

/* === 0. Globals, Resets & Variablen === */
:root {
    --primary-color: rgb(160, 160, 160);
    /* SonicCrypt Rot */
    --primary-color-hover: #494949;
    --link-color: #cccccc;
    --link-color-hover: #ffffff;
    --text-color: #ccc;
    --text-color-light: #e0e0e0;
    --text-muted-color: #adadad;
    --bg-dark: #161616;
    /* Haupt-Hintergrund */
    --bg-medium: #262626;
    /* Für Fieldsets, Admin-Panels, Meta-Info */
    --bg-content-block: #2c2c2c;
    /* Für Dashboard-Container, Profil-Info, Haupt-Form-Container, Kommentare */
    --bg-light: #333;
    /* Für Form-Inputs, Listen-Items, Tabellen-Header */
    --border-color: #444;
    --border-color-medium: #4a4a4a;
    --border-color-light: #555;
    --input-bg: var(--bg-light);
    --input-bg-focus: #3a3a3a;
    --input-border: var(--border-color-medium);
    --input-border-focus: var(--primary-color);
    --success-bg: #28a745;
    --warning-bg: #ffc107;
    --warning-text: #212529;
    --danger-bg: #dc3545;

    /* Für Navbar Höhe, wenn absolute Positionierung verwendet wird */
    --navbar-height-desktop: 80px;
    /* Anpassen an die tatsächliche Höhe deiner Navbar */
    --navbar-height-mobile: 80px;
    /* Anpassen an die tatsächliche Höhe deiner mobilen Navbar */
    /* Für Navbar Farben (basierend auf Header-Farben) */
    --navbar-bg: #000000;
    --navbar-text: #ccc;
    --navbar-hover: var(--primary-color);
    /* Hover-Farbe der Links im Menü */
    --navbar-link-bg-hover: #494949;
    /* Hintergrundfarbe der Links beim Hover */

    /* Für Footer Farben (basierend auf Footer-Farben) */
    --footer-bg: #000000;
    --footer-text: #fff;
    --footer-link-color: #cccccc;
    --footer-link-hover: #ffffff;
}

/* === 1. Basis-Stile === */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden;
}

.container,
.navbar .nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.content-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

main.container {
    flex-grow: 1;
    padding-top: 20px;
    padding-bottom: 40px;
    max-width: 1100px;
    margin-top: 170px;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;

    word-break: break-word;
}

a:hover {
    color: var(--link-color-hover);
    text-decoration: underline;
}

hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

/* === 2. Typografie === */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color-light);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

.text-muted {
    color: var(--text-muted-color) !important;
    font-size: 0.85em;
}

.text-danger {
    color: var(--primary-color);
}

.link-light {
    color: #a0a0a0;
    text-decoration: none;
}

.link-light:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* === 3. Layout-Komponenten: Header, Footer, Navbar === */
header {
    background-color: var(--navbar-bg);
    color: var(--navbar-text);
    padding: 0;
    /* Header padding wird von Navbar-Container übernommen */
    border-bottom: 3px solid var(--primary-color);
    position: fixed;
    /* <-- ÄNDERUNG: Stellt sicher, dass der Header immer sichtbar ist */
    top: 0;
    width: 100%;
    /* <-- HINZUGEFÜGT: Sorgt für volle Breite */
    z-index: 1060;
    /* Wichtig, damit Navbar über anderem Inhalt liegt */
}

footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    /* Ursprünglicher Padding beibehalten */
    border-top: 2px solid var(--primary-color);
    text-align: center;
    margin-top: auto;
}

.footer-container {
    display: inline;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Für responsive */
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}

.footer-container p {
    margin: 0;
    flex-shrink: 0;
    text-align: center;
    /* Standardmäßig links */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    /* Abstand wird über gap gesteuert */
    display: flex;
    gap: 20px;
    /* Abstand zwischen den Links */
    flex-wrap: wrap;
    justify-content: center;
    /* Links auf Desktop zentrieren, wenn genug Platz */
    padding-left: 5px;
    padding-right: 5px;
}

.footer-links li a {
    color: var(--footer-link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--footer-link-hover);
    text-decoration: underline;
    text-underline-offset: 3px;
    /* Abstand zwischen Unterstrich und Text */
}

/* Footer Toggle (Desktop: versteckt) */
.footer-toggler {
    display: none;
    /* Standardmäßig versteckt auf größeren Bildschirmen */
    background: none;
    border: none;
    color: var(--footer-text);
    font-size: 1em;
    cursor: pointer;
    padding: 5px 10px;
    align-items: center;
    gap: 5px;
    /* Abstand zwischen Text und Icon */
    transition: color 0.2s ease;
}

.footer-toggler:hover {
    color: var(--primary-color);
}

.footer-toggler i {
    transition: transform 0.3s ease;
    /* Animation für das Icon */
}


.navbar {
    background-color: var(--navbar-bg);
    color: var(--navbar-text);
    padding: 0;
    /* Padding für Navbar-Container */
    min-height: var(--navbar-height-desktop);
    /* Mindesthöhe für Desktop */
    display: flex;
    align-items: center;
    position: relative;
    /* Wichtig für absolut positioniertes Menü */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    /* Elemente verteilen */
    align-items: center;
    flex-wrap: wrap;
    /* Erlaubt Umbruch auf kleineren Bildschirmen */
}

.navbar-header {
    /* Neuer Wrapper für Logo und Burger-Button */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Logo und Toggler auf gegenüberliegenden Seiten */
    width: auto;
    /* Auf Desktop, flex-grow wird später auf mobile angewendet */
    flex-shrink: 0;
    /* Verhindert schrumpfen */
    min-height: var(--navbar-height-desktop);
    /* Stellt sicher, dass Header hoch genug ist */
}

.navbar .banner {
    margin-top: 15px;
    width: 400px;
    display: block;
    margin-bottom: 15px;
    /* Etwas Platz unter dem Banner schaffen */
}

/* NEU: Container für Logo und Motto als Positions-Referenz */
.logo-motto-container {
    position: relative;
    /* WICHTIG: Dies ist die Basis für die absolute Positionierung des Mottos */
}

/* NEU: Styling für den Motto-Text mit absoluter Positionierung */
.navbar-motto {
    position: absolute;
    text-align: center;
    bottom: -23px;
    font-size: 0.9em;
    color: var(--text-muted-color);
    font-style: italic;
    left: 35px;
    /* Keine Margins mehr, die das Layout stören könnten */
}

/* Burger Menu Toggle (Desktop: versteckt) */
.navbar-toggler {
    display: none;
    /* Standardmäßig versteckt auf größeren Bildschirmen */
    background: none;
    border: none;
    color: var(--navbar-text);
    font-size: 1.8em;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.2s ease;
}

.navbar-toggler:hover {
    color: var(--primary-color);
}

.navbar-toggler:focus {
    outline: 2px solid var(--navbar-hover);
    outline-offset: 2px;
}

/* Navbar Collapse (Desktop: sichtbar) */
.navbar-collapse {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    /* Hauptlinks links, User-Aktionen und Suche rechts */
    align-items: center;
    width: 100%;
    /* Wichtig für mobile Ansicht, aber auch hier um Platz zu nutzen */
    gap: 1.5rem;
    /* Abstand zwischen Hauptlinks, User-Aktionen und Suche */

}

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.navbar-nav li {
    margin-left: 20px;
    /* Abstand zwischen Links */
}

.main-nav-links {
    flex-grow: 1;
    /* Nimmt den verfügbaren Platz ein */
    justify-content: flex-start;
    /* Links links ausrichten */
}

.user-actions {
    justify-content: flex-end;
    /* Aktionen rechts ausrichten */
}

.nav-search {
    /* margin-left: 20px; */
    /* Abstand zur rechten Navigationsgruppe, wird durch gap auf Desktop geregelt */
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-bottom: 5px;
    padding-top: 25px;
    /* Verhindert, dass die Suchleiste schrumpft */
}

.nav-search form {
    display: flex;
    align-items: center;
    width: 100%;
    /* Für Desktop- und Mobile-Ansicht konsistent */
}

.nav-search input[type="search"] {
    padding: 0.5rem 0.8rem;
    font-size: 0.9em;
    border: 1px solid var(--border-color);
    background-color: #222;
    color: #ddd;
    border-radius: 20px 0 0 20px;
    width: 300px;
    transition: width 0.3s ease-in-out, background-color 0.2s ease;
    box-sizing: border-box;
    /* Wichtig für width: 100% */
}

.nav-search input[type="search"]:focus {
    border-color: var(--primary-color);
    outline: none;
    background-color: #282828;
    width: 340px;
}

.nav-search button[type="submit"] {
    padding: 0.5rem 0.8rem;
    /* Padding für den Button-Text (wenn vorhanden) */
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    border-left: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
    height: calc(0.9em + 1rem + 2px);
    /* Höhe an Input anpassen */
    display: flex;
    /* Für Icon Zentrierung */
    align-items: center;
    justify-content: center;
}

.nav-search button[type="submit"] i.fas {
    font-size: 0.9em;
    /* Icon Größe anpassen */
}

.nav-search button[type="submit"]:hover {
    background-color: var(--primary-color-hover);
}

.user-actions li {
    /* margin-left: 0px; */
    /* Wird durch gap in navbar-collapse gesteuert */
}

.user-actions li:first-child {
    /* margin-left: 0; */
    /* Wird durch gap in navbar-collapse gesteuert */
}

.navbar-nav a {
    color: var(--navbar-text);
    padding: 0.5rem 0.75rem;
    display: block;
    border-radius: 4px;
    font-size: 1em;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: white;
    text-decoration: underline;
    background-color: var(--navbar-link-bg-hover);
}

.navbar-nav a.active {
    color: var(--primary-color);
    font-weight: 500;
    background-color: var(--navbar-link-bg-hover);
}

/* === 4. Allgemeine UI-Elemente === */
/* Buttons */
.btn {
    display: inline-block;
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: #383838;
    border: 1px solid #666;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn:hover {
    background-color: var(--primary-color);
    ;
    border-color: #7e7e7e;
    text-decoration: underline;
    transform: translateY(-2px);
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-primary {
    background-color: #383838;
    border-color: var(--primary-color);
    color: #c0c0c0;
}

.btn-primary:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
    color: white;
}

.btn-outline-primary {
    background-color: #383838;
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color-hover);
    border-color: #383838;
    transform: translateY(-2px);
    text-decoration: underline;
    color: white;

}

.btn-danger {
    background-color: var(--danger-bg);
    border-color: var(--danger-bg);
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-secondary {
    background-color: #383838;
    border-color: var(--primary-color);
    color: #c0c0c0;
}

.btn-secondary:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
    color: white;
    text-decoration: underline;
}



.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
}

.btn-success {
    background-color: var(--success-bg);
    border-color: var(--success-bg);
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-warning {
    background-color: var(--warning-bg);
    border-color: var(--warning-bg);
    color: var(--warning-text);
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
}



.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.btn-xs {
    padding: .2rem .4rem;
    font-size: .75rem;
    line-height: 1.2;
    border-radius: .2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Formulare - Allgemein */
.form-container {
    padding: 2rem;
    background-color: var(--bg-content-block);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-container.login-register-form,
.form-container.profile-form,
/* Added from edit_profile.html context */
.form-container.release-form,
.form-container.event-series-form,
.form-container.release-edit-form,
.form-container.release-upload-form,
.auth-form

/* Added from register.html */
    {
    max-width: 500px;
    /* Default max-width for smaller forms */
}

/* Specific form container widths based on original usage */
.form-container.profile-form,
.form-container.release-form,
.form-container.event-series-form,
.form-container.release-edit-form,
.form-container.release-upload-form,
.form-container.artist-dashboard-form

/* From edit_profile.html */
    {
    max-width: 1050px;
}

/* Re-applying smaller width for login/register as they might be larger than 500px due to cascade */
.form-container.login-register-form,
.auth-form {
    max-width: 450px;
    /* From login.html and register.html */
}


.form-container h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #fff;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ddd;
    font-weight: bold;
}

.form-control,
.form-select,
.textarea-field,
#custom-genre-input {
    display: block;
    width: 100%;
    padding: .65rem .9rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color-light);
    background-color: var(--input-bg);
    background-clip: padding-box;
    border: 1px solid var(--input-border);
    appearance: none;
    border-radius: 0.25rem;
    box-sizing: border-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, background-color .15s ease;
}


.form-control:focus,
.form-select:focus,
.textarea-field:focus,
#custom-genre-input:focus {
    color: #fff;
    background-color: var(--input-bg-focus);
    border-color: var(--input-border-focus);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25);
}

.form-control-file {
    display: block;
    color: #bbb;
    margin-top: 0.5rem;
}

.form-control-file:focus-within {
    outline: 1px dotted var(--primary-color);
}

.form-control.is-invalid,
.form-select.is-invalid,
.textarea-field.is-invalid,
#custom-genre-input.is-invalid,
.form-control-file.is-invalid {
    border-color: var(--primary-color) !important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: red;
    font-weight: bold;
}

.is-invalid~.invalid-feedback,
.form-control.is-invalid~.invalid-feedback,
.form-select.is-invalid~.invalid-feedback,
#custom-genre-input.is-invalid~.invalid-feedback,
.form-control-file.is-invalid~.invalid-feedback,
.invalid-feedback.d-block {
    display: block !important;
}

.form-text.text-muted {
    font-size: 0.8em;
    display: block;
    margin-top: 0.25rem;
}

.form-check {
    display: block;
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.75rem;
    width: 1em;
    height: 1em;
    vertical-align: top;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 0.25em;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25);
}

.form-check-label {
    margin-bottom: 0;
    font-weight: normal;
    color: #ccc;
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

fieldset {
    border: 1px solid var(--border-color-medium);
    margin-bottom: 3rem;
    border-radius: 6px;
    background-color: var(--bg-medium);
}

legend {
    padding: 0.25em 0.75em;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.4em;
    background-color: var(--bg-medium);
    border: 1px solid var(--border-color-medium);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    margin-left: -1px;
    position: relative;
    top: -0.7em;
    margin-bottom: 0.5em;
}

/* Alerts (Flash Messages) */
.flash-messages-container {
    padding: 0.5rem 15px;
    /* Add horizontal padding for small screens */
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    /* Make the width flexible */
    max-width: 1100px;
    /* Set a maximum width for desktops */
    margin: 0 auto;
    box-sizing: border-box;
    /* Ensures padding is included in the total width */
}

.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    position: relative;
}

.alert-close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: inherit;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.alert-close-btn:hover {
    opacity: 1;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-info {
    color: var-(--text-muted-color);
    background-color: #383838;
    border-color: #ffffff;
}

.alert-warning {
    color: var(--warning-text);
    background-color: var(--warning-bg);
    border-color: #ffecb5;
}

.alert-danger {
    color: #58151c;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}



.table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--text-color);
    vertical-align: top;
    border-color: var(--border-color);
    border-collapse: collapse;
    font-size: 0.9em;
}

.table th,
.table td {
    padding: 0.7rem;
    vertical-align: middle;
    border-top: 1px solid var(--border-color);
    text-align: left;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid var(--border-color-light);
    color: #fff;
    background-color: var(--bg-light);
    font-weight: bold;
}

.table tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.02);
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.table a {
    color: var(--primary-color);
}

.table a:hover {
    color: var(--primary-color-hover);
    text-decoration: underline;
}

/* Pagination */
.pagination-container {
    margin-top: 2.5rem;
    text-align: center;
}

.pagination {
    display: inline-flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}

.page-item .page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--primary-color);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #2a2a2a;
    border-color: var(--border-color);
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.page-link:hover:not(.disabled):not(.active) {
    text-decoration: none;
    background-color: #404040;
    border-color: #505050;
    color: white;
}

.pagination-container .text-muted {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9em;
    color: #888;
}

/* Badges (Status, etc.) */
.badge {
    display: inline-block;
    padding: .3em .65em;
    font-size: .8em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    text-transform: capitalize;
    color: #fff;
}

.badge.status-pending_approval,
.badge.badge-warning {
    background-color: var(--warning-bg);
    color: var(--warning-text);
}

.badge.status-approved,
.badge.badge-success {
    background-color: var(--success-bg);
}

.badge.status-rejected,
.badge.badge-danger {
    background-color: var(--danger-bg);
}

.badge.status-cancelled,
.badge.badge-secondary {
    background-color: #6c757d;
}

/* Dropdown (for admin actions) */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    white-space: nowrap;
    padding-right: 1.5rem;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: var(--text-color);
    text-align: left;
    list-style: none;
    background-color: var(--bg-content-block);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: var(--text-color-light);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #fff;
    background-color: var(--primary-color);
}

.dropdown-item.text-danger:hover {
    background-color: var(--danger-bg);
    color: #fff;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

/* === 5. Spezifische Sektionen & Module === */

/* Hero Section (Homepage) */
.hero-section {
    text-align: center;
    border-bottom: 1px solid #383838;
}

.hero-section h1 {
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: -1.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-section .slogan {
    font-size: 1.4em;
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .btn-explore {
    font-size: 1.15em;
    padding: 0.8rem 2.2rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.3rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.hero-section .btn-explore:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
}

/* Random Creator Discovery */
.random-discovery-section {
    background-color: #1f1f1f;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-top: 2rem;
    max-width: 1050px;
    margin: 0 auto;
}

.random-discovery-section>h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
}

.random-creator-card {
    border: 1px solid var(--border-color);
    /* Generalized from original */
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: inline-block;
    max-width: 350px;
    width: 100%;
    background-color: var(--bg-content-block);
    padding: 1.5rem;
    text-align: center;
}

.random-creator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.random-creator-card img.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem auto;
    display: block;
    border: 3px solid var(--border-color-light);
}

.random-creator-card .creator-name {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #f0f0f0;
    line-height: 1.3;
}

.random-creator-card .creator-role {
    font-size: 1em;
    color: #aaa;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.random-creator-card .btn-view-profile {
    display: inline-block;
    margin-top: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.05em;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.random-creator-card .btn-view-profile:hover {
    background-color: #3a3a3a;
    transform: translateY(-1px);
    text-decoration: underline;
}

/* General Content Sections */
section {
    padding: 20px 0;
    margin-bottom: 20px;
}

section:last-child {
    border-bottom: none;
}

/* Common Section Heading Styles */
.section-title,
.latest-releases-section>h2,
.search-query-header h1,
.overview-header h1,
.upcoming-events-section-on-homepage h2,
.release-detail-container h1 {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.latest-releases-section>h2,
.search-query-header h1,
.overview-header h1,
.upcoming-events-section-on-homepage h2 {
    font-size: 2.2em;
}

.profile-section h2 {
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color-medium);
    padding-bottom: 0.6rem;
    font-size: 1.6em;
    font-weight: 600;
}

.releases-management-section h2,
.events-management-section h2 {
    font-size: 1.5em;
    color: #ccc;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}


/* Release/Track Edit & Upload spezifische Stile */
.current-cover-preview,
.current-flyer-preview,
.current-profile-pic {
    margin-bottom: 1rem;
    text-align: center;
}

.current-cover-preview img,
.current-flyer-preview img {
    max-width: 200px;
    max-height: 200px;
    border: 1px solid var(--border-color-light);
    border-radius: 4px;
    display: inline-block;
}

.current-cover-preview p,
.current-flyer-preview p,
.current-profile-pic p {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 0.5rem;
}

.track-form-entry {
    border: 1px solid var(--border-color-light);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    background-color: var(--bg-light);
    position: relative;
}

.track-form-entry h4 {
    margin-top: 0;
    color: var(--text-color-light);
    border-bottom: 1px solid #606060;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15em;
    /* Specific override for h4 within this context */
}

.remove-track-btn,
.add-track-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.85em;
    border-radius: 3px;
    color: #f0f0f0;
}

.remove-track-btn {
    background-color: #520000;
    border-color: #800000;
}

.remove-track-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.add-track-btn {
    background-color: #004d00;
    border-color: #006400;
}

.add-track-btn:hover {
    background-color: #008000;
    color: #fff;
}

#add-track-button-container {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    text-align: right;
}

/* Genre Input Stile */
.genre-input-area {
    margin-bottom: 1rem;
}

.genre-input-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.genre-suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background-color: #3f3f3f;
    border: 1px solid var(--input-border);
    border-top: none;
    width: 100%;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.genre-suggestions-list li {
    padding: 0.6rem 1rem;
    cursor: pointer;
    color: #d0d0d0;
    border-bottom: 1px solid #505050;
}

.genre-suggestions-list li:last-child {
    border-bottom: none;
}

.genre-suggestions-list li:hover,
.genre-suggestions-list li.selected-suggestion {
    background-color: var(--primary-color);
    color: #fff;
}

.selected-genres-tags-container {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.5rem 0;
}

.genre-tag {
    background-color: var(--primary-color);
    color: white;
    padding: 0.4em 0.8em;
    border-radius: 1em;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.genre-tag .remove-genre-tag-btn {
    margin-left: 0.6em;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.genre-tag .remove-genre-tag-btn:hover {
    opacity: 1;
}

/* Artist/DJ Dashboard & Profile spezifisch */
.dashboard-container {
    max-width: 950px;
    padding: 2rem;
    background-color: var(--bg-content-block);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dashboard-header h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2em;
    text-align: center;
}

.dashboard-header p {
    color: #bbb;
    margin-bottom: 1.5rem;
    font-size: 1.1em;
    text-align: center;
}

.dashboard-actions {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.dashboard-actions li a.btn {
    font-size: 1em;
    padding: 0.6rem 1.2rem;
}

.dashboard-actions a {
    padding: 0.8rem 2.2rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.3rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.dashboard-actions a:hover {

    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
    text-decoration: underline;
}



.release-actions a {
    padding: 0.3rem 1rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.3rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.release-actions a:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
    text-decoration: underline;
}

.create-event-container {
    padding: 0.5rem;
    text-align: center;
}

a.create-event {
    padding: 0.8rem 2.2rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.3rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;

}

a.create-event:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
}

.album-download-actions a {
    padding: 0.3rem 1rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.3rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.album-download-actions a:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
}



btn.event-filter {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.3rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;

}

btn.event-filter:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
}


.release-list-item,
.event-series-list-item {
    background-color: var(--bg-light);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border: 1px solid #484848;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.release-info,
.event-series-info {
    flex-grow: 1;
    margin-right: 1rem;
}

.release-title,
.event-series-title {
    font-weight: bold;
    color: var(--text-color-light);
    font-size: 1.15em;
    display: block;
    margin-bottom: 0.3rem;
}

.release-title a,
.event-series-title a {
    color: inherit;
    text-decoration: none;
}

.release-title a:hover,
.event-series-title a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.event-series-details {
    font-size: 0.9em;
    color: #aaa;
}

.release-actions,
.event-series-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.release-actions .btn,
.event-series-actions .btn {
    font-size: 0.85em;
    padding: 0.4rem 0.8rem;
}

.no-releases,
.no-events,
.no-comments,
.no-results {
    color: var(--text-muted-color);
    font-style: italic;
    text-align: center;
    padding: 1rem 0;
}

.profile-info-display {
    background-color: var(--bg-content-block);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border: 1px solid #383838;
}

.profile-info-display p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.profile-info-display strong {
    color: #aaa;
}

.current-profile-pic img {
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    width: 150px;
    height: 150px;
    background-color: var(--bg-light);
}

/* Admin Bereich - Grouping original classes */
.admin-dashboard,
.admin-section,
.release-review-container,
.admin-user-management

/* added from list_users.html */
    {
    max-width: 950px;
    padding: 1.5rem;
    background-color: #282828;
    /* Slightly darker than bg-medium, consistent with original CSS */
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.admin-dashboard h1,
.admin-section h1,
.release-review-container h1,
.admin-user-management h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2em;
    text-align: center;
}

.admin-dashboard p {
    text-align: center;
    color: #bbb;
    margin-bottom: 2rem;
    font-size: 1.1em;
}

.admin-dashboard ul {
    list-style: none;
    padding: 0;
}

.admin-dashboard ul li {
    margin-bottom: 0.8rem;
}

.admin-dashboard ul li a {
    display: block;
    padding: 0.8rem 1.2rem;
    background-color: #383838;
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-left: 4px solid var(--primary-color);
}

.admin-dashboard ul li a:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-left-color: #fff;
}

.admin-dashboard ul li a .count-badge {
    float: right;
    background-color: var(--bg-light);
    color: #fff;
    padding: 0.1em 0.5em;
    border-radius: 10px;
    font-size: 0.9em;
    margin-left: 10px;
}

.admin-dashboard ul li a:hover .count-badge {
    background-color: #fff;
    color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.stat-card .stat-value {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.stat-card .stat-label {
    font-size: 0.9em;
    color: #aaa;
}

.user-filters {
    background-color: #2a2a2a;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border: 1px solid #3a3a3a;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.user-filters .form-group {
    margin-bottom: 0;
    flex-grow: 1;
    min-width: 150px;
}

.user-filters label {
    font-weight: normal;
    color: #bbb;
    font-size: 0.9em;
    display: block;
    margin-bottom: 0.3rem;
}

.user-filters .btn {
    margin-top: 1.27em;
    /* Specific adjustment for Button in Filter-Layout */
}

.detail-card {
    background-color: var(--bg-content-block);
    padding: 1.5rem 2rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.detail-card h3 {
    color: #ccc;
    font-size: 1.3em;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color-medium);
    padding-bottom: 0.4rem;
}

.detail-item {
    margin-bottom: 0.8rem;
    color: #bbb;
}

.detail-item strong {
    color: var(--text-color-light);
    min-width: 180px;
    display: inline-block;
}

.flyer-preview img,
.release-cover-admin {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border: 1px solid var(--border-color-light);
    border-radius: 4px;
    margin-top: 0.5rem;
    object-fit: cover;
    margin-bottom: 1em;
}

.release-cover-admin {
    max-width: 250px;
    max-height: 250px;
}

.occurrences-preview ul {
    list-style: disc;
    padding-left: 20px;
    color: #bbb;
}

.occurrences-preview li {
    margin-bottom: 0.3rem;
}

.action-buttons-review,
.action-buttons {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.action-buttons-review form,
.action-buttons form {
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 10px;
}

.track-list-admin .card {
    background-color: var(--bg-light);
    border-color: #454545;
    color: #c5c5c5;
}

.track-list-admin .card-header {
    background-color: #383838;
    border-bottom-color: #454545;
    color: var(--text-color-light);
}

.track-list-admin audio {
    width: 100%;
    margin-top: 0.5em;
}

.metadata-section dl {
    margin-bottom: 1.5em;
}

.metadata-section dt {
    font-weight: bold;
    color: #999;
    margin-bottom: 0.25rem;
}

/* <-- HIER WURDE ES KORRIGIERT */

.metadata-section dd {
    margin-left: 0;
    margin-bottom: 0.75em;
    padding-left: 1em;
    border-left: 3px solid var(--primary-color);
    color: #ddd;
}

/* Hidden form section (für Event-Formular) */
.hidden-form-section {
    display: none !important;
}

.recurring-options-fields,
.weekly-specific-options,
.monthly-specific-options,
.monthly-bymonthday-options,
.monthly-bysetpos-options {
    padding-left: 1.5rem;
    margin-top: 1rem;
    border-left: 2px solid var(--border-color-medium);
}

/* Artist Profile (Public) */
.artist-profile-public-container {
    max-width: 1100px;
    padding: 2rem;
    background-color: #222222;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
}

.profile-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #404040;
    background-color: #222222;
}

.profile-image-public img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4a4a4a;
    margin-right: 2.5rem;
    flex-shrink: 0;
}

.profile-info-header {
    flex-grow: 1;
}

.profile-info-header h1 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    color: #f0f0f0;
    font-size: 2.8em;
    line-height: 1.2;
    text-align: left;
    /* Changed from original center to left for consistency */
}

.profile-info-header .profile-role {
    font-size: 1.1em;
    color: #aaa;
    margin-bottom: 1rem;
    text-transform: capitalize;
    font-weight: 300;
}

.profile-info-header .website-link a {
    font-size: 0.95rem;
    color: #b0b0b0;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.profile-info-header .website-link a:hover {
    color: var(--primary-color);
}

.profile-info-header .btn-edit-profile {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.85em;
    background-color: #666;
    color: #ccc;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.profile-info-header .btn-edit-profile:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-2px);
    text-decoration: underline;
}



.profile-section {
    margin-bottom: 0.5rem;
}

.artist-bio p {
    line-height: 1.7;
    color: #d0d0d0;
}

.platform-links-list,
.social-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-links-list li,
.social-links-list li {
    margin-bottom: 0.6rem;
    font-size: 1.05em;
}

.platform-links-list li a,
.social-links-list li a {
    color: #c8c8c8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.platform-links-list li a:hover,
.social-links-list li a:hover {
    color: white;
    text-decoration: underline;
}

.platform-links-list li i,
.social-links-list li i {
    margin-right: 0.5em;
    color: #777;
}

/* YouTube Embed Styling */
.youtube-embed-container {
    margin-top: 0.5rem;
}

.youtube-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #000;
    border-radius: 4px;
}

.youtube-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Base card properties for grids and lists */
.release-card,
.profile-release-card,
/* Kept from original context */
.artist-card,
.event-list-item,
.event-result-item {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.release-card:hover,
.profile-release-card:hover,
.artist-card:hover,
.event-list-item:hover,
.event-result-item:hover,
.random-creator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: var(--primary-color-hover);
}

/* Release Grid & Cards (for releases, artist profile, search) */
.releases-grid,
.profile-releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
    gap: 1.5rem;
}

.release-card,
.profile-release-card {
    background-color: #2a2a2a;
    text-align: left;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.release-card img.cover-image,
.profile-release-card img.cover-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.release-card .card-content,
.profile-release-card .card-content {
    padding: 0.8rem 0 0 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 55px;
    /* Enough space for title + artist */
}

.release-card .card-title,
.profile-release-card .card-title {
    font-size: 1.05em;
    font-weight: 600;
    color: #dadada;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
}

.release-card .card-artist,
.profile-release-card .card-artist {
    font-size: 0.85em;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1;
    margin-top: auto;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.release-card .card-artist a,
.profile-release-card .card-artist a {
    color: white;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.release-card .card-artist a:hover,
.profile-release-card .card-artist a:hover {
    text-decoration: underline;
}

.card-release-date {
    font-size: 0.75em;
    color: var(--text-muted-color);
    margin-top: 0.3rem;
    margin-bottom: 0;
    line-height: 1;
}

/* Artist/DJ Card (for artists index, djs index, search) */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.artist-card {
    background-color: #2a2a2a;
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-card img.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
    border: 2px solid #444;
}

.artist-card .artist-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #e0e0e0;
    margin-top: 0.5rem;
    white-space: normal;
    /* Erlaubt den Zeilenumbruch */
    word-break: break-word;
    /* Stellt sicher, dass sehr lange Wörter ohne Leerzeichen umgebrochen werden */
    width: 100%;
}

.artist-card .artist-name a {
    color: #e0e0e0;
    text-decoration: none;
}

.artist-card .artist-name a:hover {
    color: var(--primary-color);
}

/* Event Tiles (for homepage, events overview, artist profile, search) */
.events-display-grid,
.homepage-events-grid,
.profile-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 1.5rem;
}

.event-list-item {
    background-color: #282828;
    padding: 1.25rem;
    
    flex-wrap: nowrap;
    gap: 1.5rem;
    color: #ccc;
    text-decoration: none;
    text-overflow: ellipsis;
}

.event-item-flyer {
    flex: 0 0 160px;
    max-width: 160px;
}

.event-item-flyer img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #444;
}

.event-item-flyer .no-flyer {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 1.1em;
    border-radius: 4px;
}

.event-item-flyer .no-flyer:hover {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1em;
    border-radius: 4px;
}

.event-item-details {
    flex: 1 1 auto;
    min-width: 0;
}

.event-item-details h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2em;
    color: #e8e8e8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-item-details h3 a {
    color: inherit;
    text-decoration: none;
}

.event-item-details h3 a:hover {
    color: var(--primary-color);
}

.event-meta {
    font-size: 0.85em;
    color: #bbb;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.event-meta strong {}

.event-meta .venue-info,
.event-meta .creator-info {
    display: block;
    margin-top: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 99%;
    font-size: 0.95em;
}

.event-meta .creator-info a,
.event-artist-link {
    color: #ffffff !important;
    text-decoration: none;
    display: inline;
}

.event-meta .creator-info a:hover,
.event-artist-link:hover {

    text-decoration: underline;
}

.event-description-preview {
    font-size: 0.8em;
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 0.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Default for general preview */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Specific line clamps for different contexts if needed, otherwise use general */
.homepage-events-grid .event-description-preview {
    -webkit-line-clamp: 3;
    /* Longer preview on homepage tiles */
}

.event-description {
    /* For event overview page, usually longer */
    -webkit-line-clamp: 4;
    /* More lines for overview */
    font-size: 0.9em;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-links a {
    margin-right: 1rem;
    color: white;
    font-size: 0.85em;
    display: inline-block;
    margin-top: 0.5rem;
}

.view-all-releases-container,
.view-all-events-container,
.view-all-artist-events-container {
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

/* Homepage specific sections */
.latest-releases-section {

    max-width: 1050px;
    margin: 0 auto;

}

.upcoming-events-section-on-homepage {
    padding: 2.5rem 0;
    margin-bottom: 2rem;
}

.top-genres-section {
    padding: 1.5rem 0 2.5rem 0;
    text-align: center;
}

.top-genres-section h2 {
    font-size: 1.8em;
    color: #ccc;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border-bottom: none;
    /* Already styled by section h2, but remove border here */
}

.top-genre-tag-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1rem;
    max-width: 800px;
}

.top-genre-tag-list li a {
    display: inline-block;
    padding: 0.5em 1.1em;
    background-color: #3a3a3a;
    color: #c8c8c8;
    border-radius: 18px;
    text-decoration: none;
    font-size: 0.95em;
    border: 1px solid #484848;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.top-genre-tag-list li a:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px) scale(1.03);
    text-decoration: underline;
}

/* Releases Overview & Filters */
.filter-controls-area {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    border: 1px solid #3a3a3a;
}

.genre-tags-filter-container {
    margin-bottom: 1.5rem;
}

.genre-tags-filter-container h3 {
    color: #ccc;
    font-size: 1.2em;
    margin-bottom: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #4a4a4a;
    padding-bottom: 0.5rem;
}

.genre-tag-list {
    /* Used by top genres and filter */
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.9rem;
}

.genre-tag-list li a,
.genre-tag-list li span.active-genre-tag {
    display: inline-block;
    padding: 0.4em 1em;
    background-color: #383838;
    color: #c0c0c0;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.9em;
    border: 1px solid #505050;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.genre-tag-list li a:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    text-decoration: underline;
}

.genre-tag-list li span.active-genre-tag {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color-hover);
    font-weight: bold;
    cursor: default;
}

.clear-genre-filter-link {
    font-size: 0.8em;
    margin-left: 10px;
    color: #888;
    text-decoration: none;
}

.clear-genre-filter-link:hover {
    text-decoration: underline;
    color: #aaa;
}

.sort-form-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.sort-form-container label {
    font-weight: bold;
    color: #bbb;
    margin-bottom: 0;
    font-size: 0.9em;
    white-space: nowrap;
}

.sort-form-container select {
    padding: 0.4rem 0.8rem;
    font-size: 0.9em;
    background-color: #383838;
    color: #e0e0e0;
    border: 1px solid #5a5a5a;
    border-radius: 4px;
    min-width: 200px;
}

/* Event Overview & Filters */
.events-overview-container {
    max-width: 950px;
    padding: 0 1rem;
    margin: 0 auto;
}

.filters-section {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border: 1px solid #3a3a3a;
}

.filters-section h3 {
    margin-top: 0;
    color: #ccc;
    font-size: 1.3em;
    margin-bottom: 1rem;
}

.filter-form .row {
    margin-bottom: 0.5rem;
}

.filter-form .form-group {
    margin-bottom: 0.8rem;
}

.filter-form label {
    font-weight: 500;
    color: #bbb;
    font-size: 0.9em;
}

.filter-form .form-control,
.filter-form .form-select {
    background-color: #383838;
    color: #e0e0e0;
    border: 1px solid #505050;
    padding: 0.5rem 0.8rem;
    font-size: 0.9em;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.filter-form .btn {
    margin-top: 0.5rem;
}

.filter-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}



.event-list-container {
    margin-top: 2rem;
}

.event-item-flyer {
    /* Specific for events overview */
    flex: 0 0 200px;
    max-width: 200px;
}

.event-item-details {
    /* Specific for events overview */
    flex: 1 1 300px;
}

.event-item-details h3 {
    /* Specific for events overview */
    font-size: 1.2em;
}

.event-meta {
    /* Specific for events overview */
    font-size: 0.95em;
}

/* Release Detail Page */
.release-detail-container {
    max-width: 1100px;
    margin: 0 auto;
}

.release-header {
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 2rem;
}

.release-header img.cover-art {
    max-width: 300px;
    max-height: 300px;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid #444;
    border-radius: 5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.release-title {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.release-artist {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.release-artist a {
    color: var(--primary-color);
    text-decoration: none;
}

.release-artist a:hover {
    text-decoration: underline;
}

.release-meta {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-medium);
    border-radius: 4px;
}

.release-meta dl {
    color: #bbb;
    margin-bottom: 0;
}

.release-meta dt {
    font-weight: bold;
    color: #888;
    float: left;
    width: 150px;
    clear: left;
    padding-top: 0.3em;
}

.release-meta dd {
    margin-left: 160px;
    margin-bottom: 0.7rem;
    padding-top: 0.3em;
}

.release-meta dd:last-child {
    margin-bottom: 0;
}

.tracklist-section h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ddd;
    border-bottom: 1px solid #555;
    padding-bottom: 0.75rem;
    font-size: 1.8em;
    font-weight: 500;
}

.track-item {
    background-color: var(--bg-content-block);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border: 1px solid #404040;
    color: #c5c5c5;
}

.track-item .track-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.track-item .track-title-number {
    font-size: 1.15em;
    font-weight: 500;
    color: #e0e0e0;
}

.track-item .track-actions {
    margin-top: 0.75rem;
    font-size: 0.9em;
}

.track-item .track-actions a {
    padding: 0.3rem 1rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.3rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}


.track-item .track-actions a:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
    color: white;
    text-decoration: underline;
}


.track-item audio {
    width: 100%;
}

.description-section {
    margin-top: 2.5rem;
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 4px;
    color: #ccc;
}

.description-section h3 {
    margin-top: 0;
    color: #ddd;
    font-size: 1.6em;
    margin-bottom: 1rem;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Styles for Album Download Section */
.album-download-actions {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background-color: var(--bg-medium);
    border-radius: 4px;
    text-align: center;
}

.album-download-actions h4 {
    color: #ddd;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4em;
}

.album-download-actions .btn {
    margin: 0.5rem;
    font-size: 1em;
    padding: 0.6rem 1.2rem;
}

/* Comments */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.comments-section h3 {
    color: #ddd;
    font-size: 1.6em;
    margin-bottom: 1.5rem;
}

.comment-form-container {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    border: 1px solid #3a3a3a;
}

.comment-form-container h4 {
    margin-top: 0;
    color: #ccc;
}

.comment-list .comment {
    background-color: var(--bg-content-block);
    padding: 1rem;
    border: 1px solid #404040;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.comment-list .comment-author {
    font-weight: bold;
    color: var(--primary-color);
}

.comment-list .comment-date {
    font-size: 0.8em;
    color: #777;
    margin-left: 0.5em;
}

.comment-list .comment-body {
    margin-top: 0.5rem;
    line-height: 1.6;
    color: #c5c5c5;
    
}

/* Styling für das Kommentar-Textfeld */
#body {
    background-color: #333;
    color: #e0e0e0;
    border: 1px solid #555;
    min-height: 80px;
}

#body:focus {
    background-color: #383838;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25);
}

/* Search Results */
.search-results-container {
    max-width: 950px;
    margin: 0 auto;

}

.search-query-header h1 {
    font-size: 1.8em;
    color: #ccc;
}

.search-query-header strong {
    color: var(--primary-color);
}

.results-section {
    margin-bottom: 2.5rem;
}

.results-section h2 {
    font-size: 1.5em;
    color: #bbb;
    border-bottom: 1px solid #444;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

/* Track Search Results */
.track-results-list {
    list-style: none;
    padding-left: 0;
}

.track-results-list li {
    background-color: var(--bg-content-block);
    border: 1px solid #3f3f3f;
    padding: 0.8rem 1rem;
    margin-bottom: 0.75rem;
    border-radius: 4px;
    font-size: 0.95em;
}

.track-results-list li a {
    color: #e0e0e0;
    font-weight: 500;
    text-decoration: none;
}

.track-results-list li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.track-results-list .track-meta {
    font-size: 0.85em;
    color: #999;
    display: block;
    margin-top: 0.2rem;
}

.track-results-list .track-meta a {
    color: #aaa;
    font-weight: normal;
}

.track-results-list .track-meta a:hover {
    color: var(--primary-color);
}

/* Event Search Results */
.event-results-list {
    /* No grid here, simple list for search results */
}

.event-result-item {
    background-color: var(--bg-content-block);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    /* Added missing border */
    display: flex;
    gap: 1rem;
}

.event-result-item .event-flyer-thumb {
    flex: 0 0 100px;
    max-width: 100px;
}

.event-result-item .event-flyer-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 3px;
}

.event-result-item .event-flyer-thumb .no-flyer-thumb {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #383838;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 0.8em;
    border-radius: 3px;
}

.event-result-item .event-details {
    flex: 1;
}

.event-result-item .event-details h4 {
    margin-top: 0;
    margin-bottom: 0.3rem;
    font-size: 1.15em;
    color: #e0e0e0;
}

.event-result-item .event-details h4 a {
    color: inherit;
    text-decoration: none;
}

.event-result-item .event-details h4 a:hover {
    color: var(--primary-color);
}

.event-result-item .event-meta-search {
    font-size: 0.85em;
    color: #aaa;
    line-height: 1.4;
}

.event-result-item .event-meta-search strong {
    color: var(--primary-color);
}

.event-result-item .event-meta-search a {
    color: #b0b0b0;
}

.event-result-item .event-meta-search a:hover {
    color: var(--primary-color);
}

/* Utilities */
.text-center {
    text-align: center;
}

.d-inline {
    /* Added for form buttons in tables */
    display: inline-block !important;
}

.col-md-6 {
    /* Basic grid for rows in forms (e.g. login.html) */
    width: 100%;
    float: left;
    /* Will need responsive adjustment */
}

.col-md-4 {
    /* Basic grid for rows in forms (e.g. login.html) */
    width: 100%;
    float: left;
    /* Will need responsive adjustment */
}

/* This is a very basic grid simulation. For full grid, a library like Bootstrap is needed.
   Better to use flexbox for rows if only specific scenarios need it.
   I'll handle these as flexbox for responsive in media queries. */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    /* compensate for gap */
    margin-right: -0.75rem;
    /* compensate for gap */
}

.row>[class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}


/* === 6. Responsive Design === */
@media (min-width: 769px) {

    /* Adjust column widths for larger screens */
    .col-md-6 {
        width: 50%;
    }

    .col-md-4 {
        width: 33.333333%;
    }

    .col-md-3 {
        width: 25%;
    }
}


@media (max-width: 992px) {

    .container,
    .navbar .nav-container {
        width: 95%;
        padding: 0 10px;
    }

    .release-meta dt {
        width: 120px;
    }

    .release-meta dd {
        margin-left: 130px;
    }



}


@media (max-width: 1310px) {
    .container {
        padding: 10px;
        /* Weniger Padding auf kleinen Bildschirmen */
    }

    /* Navbar Mobile Styles */
    .navbar {
        padding: 0;
        /* Padding wird von nav-container übernommen */
        min-height: var(--navbar-height-mobile);
        /* Mobile Höhe */
    }

    .navbar .nav-container {
        flex-direction: column;
        /* Elemente untereinander anordnen */
        align-items: flex-start;
        /* Links ausrichten */
        width: 100%;
        padding: 0 15px;
        /* Mobile Padding für den Container */
        position: relative;
        /* Für absolute positionierung des Menüs */
    }

    .navbar-header {
        width: 100%;
        /* Nimmt volle Breite ein */
        justify-content: space-between;
        /* Logo links, Toggler rechts */
        min-height: var(--navbar-height-mobile);
        /* Sicherstellen, dass der Header genug Platz hat */
    }

    .navbar .banner {
        width: auto;
        max-height: 60px;
        margin-bottom: 0;
        /* Auf Mobilgeräten wird der Abstand vom Motto gesteuert */
    }

    /* NEU: Angepasste Regeln für das Motto auf Mobilgeräten */
    .navbar-motto {
        position: static;
        white-space: normal;
        text-align: left;
        font-size: 1em;
        /* margin-top: -2px; */
        margin-bottom: -23px;
        /* padding-right: 15px; */
        line-height: 1.2;
        margin-left: 15px;
        text-align: center;
    }


    .navbar-toggler {
        display: block;
        /* Burger-Button auf Mobilgeräten anzeigen */
        margin-bottom: -10px;
    }

    .navbar-collapse {
        /* VORHANDENE STYLES */
        display: none;
        flex-direction: column;
        background-color: var(--navbar-bg);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        padding-bottom: 20px;
        padding-top: 10px;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        transform: translateY(-100%);
        opacity: 0;
        align-items: flex-start;
        gap: 0;
        justify-content: flex-start;
        /* Stellt sicher, dass die Elemente oben beginnen */

        /* --- NEUE/GEÄNDERTE STYLES --- */
        position: fixed;
        /* ÄNDERUNG: von absolute zu fixed */
        top: var(--navbar-height-mobile);
        /* Position direkt unter dem Header */
        left: 0;
        right: 0;
        /* Sorgt für volle Breite */
        bottom: 0;
        /* Spannt das Menü bis zum unteren Bildschirmrand auf */
        overflow-y: auto;
        /* Erlaubt das Scrollen innerhalb dieses fixierten Containers */
        height: auto;
        /* Höhe wird durch top/bottom bestimmt, max-height ist nicht mehr nötig */
    }

    .navbar-collapse.open {
        display: flex;
        /* Menü anzeigen */
        transform: translateY(0);
        /* In den Sichtbereich schieben */
        opacity: 1;
    }

    .navbar-nav {
        flex-direction: column;
        /* Links untereinander */
        width: 100%;
        margin-top: 0px;
        /* Abstand vom Header */
    }

    /**************************************************/
    /* HIER IST DIE KORREKTUR FÜR DIE REIHENFOLGE     */
    /**************************************************/
    .main-nav-links {
        flex-grow: 0;
        /* Verhindert, dass dieses Element den ganzen Platz einnimmt */
    }


    .navbar-nav li {
        margin: 0;
        /* Abstand zurücksetzen */
        width: 100%;
        text-align: center;
        /* Links zentrieren */

    }

    .navbar-nav li a {
        display: block;
        /* Ganze Breite klickbar */
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        /* Trennlinien */
        background-color: var(--navbar-bg);
        /* Hintergrund der Links */
        text-align: left;
        /* Text linksbündig */
    }

    .navbar-nav li:last-child a {
        border-bottom: none;
        /* Keine Linie am letzten Link */
    }

    .navbar-nav a:hover {
        background-color: var(--navbar-hover);
        color: var(--navbar-bg);
        /* Textfarbe beim Hover ändern */
    }

    .user-actions {
        margin-top: 15px;
        /* Abstand zu den Hauptlinks */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
        width: 100%;
        flex-direction: column;
        /* Auch hier untereinander */
    }

    .nav-search {
        width: calc(100% - 30px);
        /* Breite der Suchleiste im mobilen Menü, mit Padding */
        margin: 20px 15px 0 15px;
        /* Zentrieren und Abstand, seitlich vom Padding */
        flex-direction: row;
        /* Input und Button nebeneinander */
    }

    .nav-search input[type="search"] {
        width: auto;
        /* Breite wird durch flex-grow kontrolliert */
        flex-grow: 1;
        /* Input füllt verfügbaren Platz aus */
        border-radius: 4px 0 0 4px;
        /* Ecken anpassen */
        font-size: 1em;
        /* Etwas größere Schrift für bessere Lesbarkeit */
        padding: 0.75rem 1rem;
        /* Mehr Padding */
    }

    .nav-search input[type="search"]:focus {
        width: auto;
        /* Beibehaltung der flex-grow Breite */
    }

    .nav-search button[type="submit"] {
        border-radius: 0 4px 4px 0;
        padding: 0.75rem 1rem;
        /* Padding für den Button-Text (wenn vorhanden) */
        height: auto;
        /* Höhe automatisch anpassen */
    }



    /* Der Rest der Media Query bleibt bestehen */
    /* .navbar-main-content und .navbar-right-section sind in der neuen Struktur nicht mehr relevant und wurden durch .navbar-collapse ersetzt. Die CSS-Regeln für diese Klassen werden hier ausgeblendet oder entfernt. */
    .navbar-main-content,
    .navbar-right-section {
        display: none;
        /* Diese Elemente existieren in der neuen HTML-Struktur für mobile nicht mehr wie zuvor */
    }

    .navbar-brand {
        margin-right: 0;
        font-size: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 30px 15px;
    }

    .form-container,
    .dashboard-container,
    .admin-dashboard,
    .admin-section,
    .release-review-container,
    .admin-user-management {
        padding: 1.5rem;
    }

    legend {
        font-size: 1.2em;
    }

    .track-form-entry h4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .remove-track-btn {
        align-self: flex-end;
    }

    /* Artist Profile */
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .profile-image-public img {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .profile-info-header h1 {
        font-size: 2.2em;
        text-align: center;
        /* Override default left alignment for responsive */
    }

    .profile-info-header .profile-role {
        font-size: 1em;
        text-align: center;
    }

    .profile-info-header .website-link {
        text-align: center;
    }

    .profile-info-header .btn-edit-profile {
        display: block;
        width: max-content;
        margin: 1rem auto 0 auto;
    }

    .profile-section h2 {
        text-align: center;
    }

    /* Event Tiles */
    .event-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .event-item-flyer {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .event-item-flyer img,
    .event-item-flyer .no-flyer {
        width: 160px;
        /* Keep a reasonable size for flyer on small screens */
        margin: 0 auto;
    }

    .event-item-details {
        min-width: unset;
        flex: 1 1 100%;
    }

    .event-item-details h3 {
        font-size: 1.1em;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .event-meta span {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    /* Admin specific */
    .user-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .user-filters .form-group {
        width: 100%;
        min-width: unset;
    }

    .user-filters .btn {
        margin-top: 0.5rem;
        width: 100%;
    }

    .detail-item strong {
        display: block;
        min-width: auto;
        margin-bottom: 0.2rem;
    }

    .release-meta dt {
        width: 100%;
    }

    .release-meta dd {
        margin-left: 0;
    }

    .tracklist-section h3,
    .description-section h3,
    .comments-section h3 {
        text-align: center;
    }

    /* Search Results */
    .event-result-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-result-item .event-flyer-thumb {
        width: 100px;
        max-width: 100px;
        margin: 0 auto 0.5rem auto;
        /* Center thumbnail and add space below */
    }

    .event-result-item .event-details h4,
    .event-result-item .event-meta-search {
        text-align: center;
    }

    /* Responsive columns for form fields */
    .row .col-md-6,
    .row .col-md-4,
    .row .col-md-3 {
        width: 100%;
        float: none;
    }
}

@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }

    /* Das Overlay, das den Hintergrund abdunkelt */
    .textarea-focus-overlay {
        display: none;
        /* Standardmäßig versteckt */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1900;
        /* Unter dem Textfeld, aber über allem anderen */
    }

    /* Die Stile für das Textfeld, wenn es im Fokus ist */
    .textarea-in-focus {
        position: fixed !important;
        /* Wichtig, um andere Stile zu überschreiben */
        top: 5vh;
        /* 5% Abstand vom oberen Bildschirmrand */
        left: 5%;
        width: 90% !important;
        height: 80vh !important;
        /* Nimmt 80% der Bildschirmhöhe ein */
        max-height: none !important;
        /* Überschreibt eine eventuelle max-height */
        z-index: 1901;
        /* Über dem Overlay */

        /* WICHTIG: Erlaube internes Scrollen nur in diesem Modus */
        overflow-y: scroll !important;
    }

    .filter-form .row {
        flex-direction: column;
        /* Ändert die Anordnung von horizontal zu vertikal */
        gap: 0;
        /* Setzt den Spaltenabstand zurück, da er nicht mehr benötigt wird */
    }

    .filter-form .form-group {
        width: 100%;
        /* Stellt sicher, dass jedes Feld die volle Breite einnimmt */
        margin-bottom: 1rem;
        /* Fügt einen vertikalen Abstand zwischen den Feldern hinzu */
    }

    .filter-form .form-group:last-child {
        margin-bottom: 0;
        /* Entfernt den Abstand beim letzten Element in einer Reihe */
    }

    .modal-close {
        font-size: 3rem;
        /* Größeres 'x' */
        right: 20px;
        /* Etwas mehr Abstand vom Rand */
    }

    .js-modal-image {
        cursor: default;
    }

    .forum-post {
        flex-direction: column;
    }

    .post-author-info {
        flex-basis: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        border-bottom-left-radius: 0;
        border-top-right-radius: 5px;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }

    .post-author-info img.profile-avatar {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
    }

    .post-author-details {
        flex-grow: 1;
    }

    .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-actions {
        width: 100%;
        text-align: left;
        margin-top: 0.5rem;
    }

    .post-actions .btn {
        margin-left: 0;
        margin-right: 5px;
    }

    .cookie-consent-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        width: 100%;
    }

    .cookie-consent-banner p {
        margin-bottom: 15px;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-actions {
        margin-top: 0.5rem;
        width: 100%;
        justify-content: flex-start;
    }
}


@media (max-width: 576px) {
    .track-form-entry {
        border: 1px solid var(--border-color-light);
        padding: 0.5rem;
        margin-bottom: 1.5rem;
        border-radius: 5px;
        background-color: var(--bg-light);
        position: relative;
    }

    .latest-releases-section .releases-grid,
    .releases-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 145px), 1fr)) !important;
        gap: 1rem;

    }



    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }

    .form-control,
    .form-select,
    .textarea-field,
    #custom-genre-input {
        padding: 0.6rem 0.8rem;
    }

    .release-actions,
    .event-series-actions {
        width: 100%;
        margin-top: 0.8rem;
        justify-content: flex-start;
    }

    .release-actions .btn,
    .event-series-actions .btn {
        margin-left: 0;
        margin-right: 0.5rem;
    }

    .release-card .card-content,
    .profile-release-card .card-content {
        padding: 0.5rem;
    }

    .release-card .card-title,
    .profile-release-card .card-title {
        font-size: 1em;
    }

    .release-card .card-artist,
    .profile-release-card .card-artist {
        font-size: 0.75em;
    }

    .artist-card .artist-name {
        font-size: 1em;
    }

    .random-creator-card {
        padding: 0em;
        width: 95%;
        border: 1px solid var(--border-color);
    }

    .random-creator-card img.profile-image {
        width: 120px;
        height: 120px;
        margin-top: 10px;
    }

    .random-creator-card .btn-view-profile {
        margin-bottom: 10px;
    }

    .random-creator-card .creator-name {
        font-size: 1.5em;
    }

    .random-creator-card .creator-role {
        font-size: 0.9em;
    }

    .releases-grid,
    .profile-releases-grid,
    .artists-grid,
    .events-display-grid,
    .homepage-events-grid,
    .profile-events-grid {
        gap: 1rem;
    }
    
    .profile-releases-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 145px), 1fr)) !important;
        gap: 1rem;
    }



    .event-list-item .event-item-details h3 {
        font-size: 1em;
    }
}


/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    /* Abstand vom unteren Rand */
    right: 20px;
    /* Abstand vom rechten Rand */
    background-color: var(--primary-color, #4A90E2);
    /* Beispiel: Nutze deine Hauptfarbe */
    color: var(--text-color-light, #FFFFFF);
    /* Beispiel: Weiße Schriftfarbe */
    border: none;
    border-radius: 50%;
    /* Rund machen */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    /* Icon-Größe */
    cursor: pointer;
    opacity: 0;
    /* Standardmäßig ausgeblendet */
    visibility: hidden;
    /* Standardmäßig ausgeblendet */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 1000;
    /* Sicherstellen, dass es über anderem Inhalt liegt */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* Leichter Schatten */
}

.scroll-to-top-btn:hover {
    background-color: #494949;
    /* Dunklerer Farbton beim Hover */
    transform: translateY(-3px);
    /* Leichter Hoch-Effekt beim Hover */
}

/* Klasse, die vom JavaScript hinzugefügt wird, um den Button anzuzeigen */
.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}


.image-modal {
    display: none;
    /* Versteckt das Modal standardmäßig */
    position: fixed;
    /* Bleibt beim Scrollen an Ort und Stelle */
    z-index: 2000;
    /* Muss über allen anderen Elementen liegen (z.B. Navbar) */
    left: 0;
    top: 0;
    width: 100%;
    /* Volle Breite */
    height: 100%;
    /* Volle Höhe */
    overflow: auto;
    /* Ermöglicht Scrollen, falls das Bild größer als der Bildschirm ist */
    background-color: rgba(0, 0, 0, 0.9);
    /* Schwarzer Hintergrund mit Transparenz */
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s;
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    /* Maximale Breite des Bildes im Modal */
    max-height: 90vh;
    /* Maximale Höhe des Bildes im Modal (90% der Viewport-Höhe) */
    object-fit: contain;
    /* Stellt sicher, dass das gesamte Bild sichtbar ist */
    position: absolute;
    /* Positionierung für Zentrierung */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Zentriert das Bild */
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.image-modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    /* Genug Platz für die Bildunterschrift */
}

/* Close Button */
.image-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
    /* Über dem Bild liegen */
}

.image-modal-close:hover,
.image-modal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Animations */
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}


/* Für Bilder, die das Modal öffnen sollen, um einen Klick-Cursor zu zeigen */
.js-modal-image {
    cursor: pointer;
}


.forum-container {
    max-width: 950px;
}

.forum-actions {
    margin-bottom: 1.5rem;
    text-align: left;
}

.forum-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background-color: var(--bg-medium);
}

.forum-table th,
.forum-table td {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.forum-table thead th {
    background-color: var(--bg-light);
    color: var(--text-color-light);
    font-weight: bold;
}

.forum-table tbody tr:nth-child(even) {
    background-color: var(--bg-content-block);
}

.forum-table tbody tr:hover {
    background-color: #383838;
}

.topic-title a {
    font-weight: bold;
    color: #ccc;
    text-decoration: none;
}

.topic-title a:hover {
    text-decoration: underline;
    color: var(--link-color-hover);
}

.topic-creator,
.last-post-info {
    font-size: 0.85em;
    color: var(--text-muted-color);
}

.topic-creator a,
.last-post-info a {
    color: var(--text-muted-color);
}

.topic-creator a:hover,
.last-post-info a:hover {
    color: var(--link-color-hover);
}

.post-count,
.view-count {
    text-align: center;
}

.forum-form-container {
    max-width: 800px;
    padding: 2rem;
    background-color: var(--bg-content-block);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.forum-form-container h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.pinned-topic .topic-title::before {
    content: "\f08d";
    /* FontAwesome Pinned Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-color);
}

.locked-topic .topic-title::before {
    content: "\f023";
    /* FontAwesome Lock Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #aaa;
}


.topic-view-container {
    max-width: 900px;
    margin: 0 auto;
}

.topic-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color-medium);
}

.topic-header h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2em;
    word-break: break-word;
}

.topic-meta {
    font-size: 0.9em;
    color: var(--text-muted-color);
}

.topic-meta a {
    color: var(--text-muted-color);
}

.topic-meta a:hover {
    color: var(--link-color-hover);
}

.posts-list {
    margin-bottom: 2rem;
}

.forum-post {
    background-color: var(--bg-content-block);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    /* Für kleinere Bildschirme */
}

.post-author-info {
    flex: 0 0 180px;
    /* Feste Breite für Autoreninfo */
    padding: 1rem;
    background-color: var(--bg-medium);
    /* Etwas anderer Hintergrund für die Autorenspalte */
    border-right: 1px solid var(--border-color);
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.post-author-info img.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid var(--border-color-light);
}

.post-author-name a {
    font-weight: bold;
    color: var(--text-color-light);
    text-decoration: none;
    display: block;
    word-break: break-word;
}

.post-author-name a:hover {
    color: #fff;
    text-decoration: underline;
}

.post-author-role {
    font-size: 0.8em;
    color: #999;
    text-transform: capitalize;
}

.post-content-main {
    flex: 1 1 auto;
    /* Nimmt den restlichen Platz ein */
    padding: 1rem 1.5rem;
    min-width: 0;
    /* Wichtig für Flexbox-Umbruch */
}

.post-meta {
    font-size: 0.85em;
    color: var(--text-muted-color);
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--border-color-light);
}

.post-body {
    line-height: 1.7;
    color: var(--text-color);
    word-wrap: break-word;
    /* Lange Wörter umbrechen */
    overflow-wrap: break-word;

    /* Zeilenumbrüche aus Textarea beibehalten */
}

.post-body a {
    /* Styling für automatisch generierte Links */
    color: var(--link-color);
    text-decoration: underline;
}

.post-body a:hover {
    color: var(--link-color-hover);
}

.reply-form-container {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background-color: var(--bg-medium);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.reply-form-container h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.post-anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}


.event-detail-container {
    max-width: 1100px;
    padding: 2rem;
    background-color: var(--bg-medium);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding-top: 2rem;
}

.event-detail-header h1 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 2.4em;
    word-break: break-word;
    text-align: center;
}

.event-detail-header .event-creator-link {
    font-size: 1.3em;
    color: var(--text-muted-color);
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.event-detail-header .event-creator-link a {
    color: var(--link-color);
}

.event-detail-header .event-creator-link a:hover {
    color: var(--link-color-hover);
}

.event-flyer-container {
    text-align: center;
    margin-bottom: 2rem;

}

.event-flyer-container img.event-flyer-detail {
    max-width: 100%;
    max-height: 400px;
    /* Begrenzung für große Flyer */
    border-radius: 5px;
    border: 1px solid var(--border-color-medium);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    /* Nur wenn js-modal-image Klasse verwendet wird */
}

.event-flyer-container .no-flyer-detail {
    display: inline-block;
    padding: 3rem 2rem;
    background-color: var(--bg-medium);
    color: var(--text-muted-color);
    border-radius: 5px;
    font-style: italic;
}

.event-info-section {
    margin-bottom: 1.5rem;
}

.event-info-section h3 {
    color: var(--text-color-light);
    font-size: 1.5em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color-medium);
}


.event-info-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0.5rem 1rem;
    align-items: center;
}

.event-info-grid dt {
    text-align: left;
    font-weight: bold;
    color: #888;
    float: left;
    width: 150px;
    clear: left;
    padding-top: 0.3em;

}

.event-info-grid dd {
    margin: 0;
    color: var(--text-color);
    word-break: break-word;
}

.event-info-grid dd a {
    color: var(--link-color);
}

.event-description-full {
    line-height: 1.7;
    color: var(--text-color);
    margin-top: 1rem;

}

.event-description-full a {
    color: var(--link-color);
}

.event-actions {
    margin-top: 2rem;
    text-align: center;
}

.event-actions .btn {
    margin: 0.5rem;
}

@media (max-width: 600px) {
    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .event-info-grid dt {
        text-align: left;
        margin-bottom: 0.2rem;
    }
}

/* Für Scroll-Anker */

.forum-form-container {
    max-width: 800px;
    padding: 2rem;
    background-color: var(--bg-content-block);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.forum-form-container h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.original-post-quote {
    background-color: var(--bg-medium);
    border: 1px solid var(--border-color-light);
    padding: 0.8rem 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: #bbb;
    max-height: 150px;
    overflow-y: auto;
}

.original-post-quote blockquote {
    margin: 0;
    padding: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.topic-view-container {
    max-width: 900px;
}

.topic-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color-medium);
}

.topic-header h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2em;
    word-break: break-word;
}

.topic-meta {
    font-size: 0.9em;
    color: var(--text-muted-color);
    margin-bottom: 1rem;
}

/* Reduzierter margin-bottom */
.topic-meta a {
    color: var(--text-muted-color);
}

.topic-meta a:hover {
    color: var(--link-color-hover);
}

.topic-admin-actions {
    background-color: #303030;
    /* Etwas dunkler als post-author-info */
    padding: 10px 15px;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    text-align: right;
}

.topic-admin-actions form {
    display: inline-block;
    margin-left: 10px;
}

.topic-admin-actions .btn-sm {
    font-size: 0.8em;
    padding: 0.3rem 0.6rem;
}

.posts-list {
    margin-bottom: 2rem;
}

.forum-post {
    background-color: var(--bg-content-block);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
}

.post-author-info {
    flex: 0 0 180px;
    padding: 1rem;
    background-color: var(--bg-medium);
    border-right: 1px solid var(--border-color);
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.post-author-info img.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid var(--border-color-light);
}

.post-author-name a {
    font-weight: bold;
    color: var(--text-color-light);
    text-decoration: none;
    display: block;
    word-break: break-word;
}

.post-author-name a:hover {
    color: #fff;
    text-decoration: underline;
}

.post-author-role {
    font-size: 0.8em;
    color: #999;
    text-transform: capitalize;
}

.post-content-main {
    flex: 1 1 auto;
    padding: 1rem 1.5rem;
    min-width: 0;
}

.post-meta {
    font-size: 0.85em;
    color: var(--text-muted-color);
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--border-color-light);
    display: flex;
    /* Für Verteilung von Datum und Aktionen */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Falls Aktionen umbrechen */
}

.post-meta .timestamp {
    flex-grow: 1;
}

/* Datum nimmt Platz ein */

.post-actions {
    /* margin-top: 0.5rem; Wird jetzt durch Flexbox im .post-meta gesteuert */
    text-align: right;
    flex-shrink: 0;
    /* Verhindert Schrumpfen der Aktionsbuttons */
}

.post-actions .btn {
    margin-left: 5px;
    font-size: 0.9em;
}


.post-body {
    line-height: 1.7;
    color: var(--text-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.post-body a {
    color: var(--link-color);
    text-decoration: underline;
}

.post-body a:hover {
    color: var(--link-color-hover);
}

.reply-form-container {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background-color: var(--bg-medium);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.reply-form-container h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.post-anchor {
    display: block;
    position: relative;
    top: -80px;
    /* Offset für feste Navbar */
    visibility: hidden;
}

.auth-form {
    /* Konsistent mit deinem CSS aus style.css */
    max-width: 450px;
    padding: 2rem;
    background-color: var(--bg-content-block);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

#captcha-img {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    vertical-align: middle;
    max-width: 160px;
    height: auto;
}

.reload-captcha-btn {
    /* Stellt sicher, dass der Button vernünftig aussieht */
    padding: 0.3rem 0.6rem;
    font-size: 0.85em;
    line-height: 1.2;
    vertical-align: middle;
    /* Nimm Button-Basis-Styles aus deiner style.css, z.B. .btn-secondary */
    background-color: #555;
    /* Beispiel, an dein Theme anpassen */
    color: #fff;
    border: 1px solid #666;
    border-radius: 0.2rem;
    cursor: pointer;
}

.reload-captcha-btn:hover {
    background-color: #666;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links small a {
    /* Styling für den "Log In" Link */
    color: var(--link-color);
}

.auth-links small a:hover {
    color: var(--link-color-hover);
}

.form-container.contact-form {
    max-width: 650px;
    /* Deine anderen Form-Container-Styles werden geerbt */
}

.contact-form h1 {
    /* Überschrift zentrieren oder anpassen */
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.release-meta dd .genre-link-in-details {
    /* Behält Standard-Linkfarben bei oder spezifiziere hier */
    /* color: var(--link-color); */
    text-decoration: none;
    /* Oder underline, je nach Präferenz */
    border-radius: 3px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.release-meta dd .genre-link-in-details:hover {
    /* color: var(--link-color-hover); */
    background-color: #999999;
    /* Leichter Hintergrund beim Hover */
    text-decoration: underline;
}


.tos-label a {
    color: var(link-color);
    /* Oder deine Link-Farbe */
    text-decoration: underline;
}

.tos-label a:hover {
    color: var(--link-color-hover);
    /* Oder deine Link-Hover-Farbe */
}

.rss-feed-link-container {
    text-align: left;
    /* Oder left, je nach Design */
    margin-bottom: 1rem;
}

.rss-feed-link-container a {
    display: inline-block;
    padding: 0.4em 0.8em;
    background-color: #797979;
    /* RSS Orange oder eine deiner Akzentfarben */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
}

.rss-feed-link-container a:hover {
    background-color: #cc5200;
}

.rss-feed-link-container a i {
    margin-right: 0.4em;
}

.legal-page-container {
    max-width: 800px;
    padding: 1rem;
}

.legal-page-container h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2em;
}

.legal-page-container h2 {
    color: #e0e0e0;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5em;
    border-bottom: 1px solid var(--border-color-medium);
    padding-bottom: 0.5rem;
}

.legal-page-container p,
.legal-page-container ul li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.legal-page-container ul {
    padding-left: 20px;
}

.legal-page-container strong {
    color: var(--text-color-light);
}

.legal-page-container a {
    color: var(--link-color);
}

.legal-page-container a:hover {
    color: var(--link-color-hover);
}

.last-updated {
    font-style: italic;
    color: var(--text-muted-color);
    margin-bottom: 2rem;
}

/* === Cookie Consent Banner === */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1f1f1f;
    /* Dunkler Hintergrund, passend zum Theme */
    color: var(--text-color);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1070;
    /* Über den meisten anderen Elementen, aber unter Modals falls nötig */
    display: flex;
    /* Für Text und Button nebeneinander */
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    /* Umbruch auf kleinen Bildschirmen */
    gap: 15px;
    /* Abstand zwischen Text und Button */
    font-size: 0.9em;
    border-top: 1px solid var(--border-color);
}

.cookie-consent-banner p {
    flex-grow: 1;
    /* Text nimmt verfügbaren Platz ein */
    line-height: 1.5;
    margin-right: 30px;
}

.cookie-consent-banner a {
    color: var(--primary-color);
    /* Oder deine Link-Farbe */
    text-decoration: underline;
}

.cookie-consent-banner a:hover {
    color: var(--primary-color-hover);
}

.cookie-consent-banner button {
    flex-shrink: 0;
    margin-right: 40px;
    /* Button schrumpft nicht */
}

.forum-container {
    max-width: 950px;
}

.forum-actions {
    margin-bottom: 1.5rem;
    text-align: left;
}

.forum-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background-color: var(--bg-medium);
}

.forum-table th,
.forum-table td {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.forum-table thead th {
    background-color: var(--bg-light);
    color: var(--text-color-light);
    font-weight: bold;
}

.forum-table tbody tr:nth-child(even) {
    background-color: var(--bg-content-block);
}

.forum-table tbody tr:hover {
    background-color: #383838;
}

.topic-main-info {
    /* Wird für mobile Ansicht relevant */
}

.topic-title a {
    font-weight: bold;
    color: #ccc;
    text-decoration: none;
}

.topic-title a:hover {
    text-decoration: underline;
    color: var(--link-color-hover);
}

.topic-creator {
    font-size: 0.85em;
    color: var(--text-muted-color);
    margin-top: 0.3em;
}

.topic-creator a {
    color: var(--text-muted-color);
}

.topic-creator a:hover {
    color: var(--link-color-hover);
}

.post-count {
    text-align: center;
}

.last-post-details {
    /* Wird für mobile Ansicht relevant */
}

.last-post-info {
    font-size: 0.85em;
    color: var(--text-muted-color);
}

.last-post-info a {
    color: var(--text-muted-color);
}

.last-post-info a:hover {
    color: var(--link-color-hover);
}

.pinned-topic .topic-title::before {
    content: "\f08d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-color);
}

.locked-topic .topic-title::before {
    content: "\f023";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #aaa;
}

.topic-mobile-meta {
    display: none;
    /* Standardmäßig auf Desktop versteckt */
}

.desktop-only-cell {
    /* Diese Klasse wird verwendet, um Spalten auf Mobile auszublenden */
}

/* === Mobile Responsive Forum Table Styles === */
@media screen and (max-width: 768px) {
    .forum-table thead {
        display: none;
    }

    .forum-table,
    .forum-table tbody,
    .forum-table tr,
    .forum-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        /* Wichtig für Padding etc. */
    }

    .forum-table tr {
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 5px;
        padding: 0;
        background-color: var(--bg-content-block);
        /* Hintergrund für jede "Karte" */
    }

    .forum-table td {
        text-align: left;
        padding: 0.75rem 1rem;
        border: none;
        border-bottom: 1px solid var(--border-color-light);
        position: relative;
    }

    .forum-table tr td:first-child {
        border-top-left-radius: 4px;
        /* Ecken für die "Karte" */
        border-top-right-radius: 4px;
    }

    .forum-table tr td:last-child {
        border-bottom: none;
        border-bottom-left-radius: 4px;
        /* Ecken für die "Karte" */
        border-bottom-right-radius: 4px;
    }

    /* Verstecke die Desktop-Spalten für Replies und Last Post */
    .forum-table .desktop-only-cell {
        display: none;
    }

    /* Zeige die mobilen Meta-Informationen an */
    .topic-mobile-meta {
        display: flex;
        flex-wrap: wrap;
        /* Erlaube Umbruch, falls zu lang */
        justify-content: space-between;
        font-size: 0.8em;
        color: var(--text-muted-color);
        padding-top: 0.75rem;
        /* Abstand nach oben */
        margin-top: 0.75rem;
        /* Abstand zur .topic-creator Info */
        border-top: 1px dashed var(--border-color-light);
        /* Trennlinie */
    }

    .topic-mobile-meta span {
        margin-right: 10px;
        /* Kleiner Abstand zwischen den Meta-Infos */
    }

    .topic-mobile-meta span:last-child {
        margin-right: 0;
    }

    .topic-main-info {
        /* Bleibt als Flex-Container für Titel und Creator */
        display: flex;
        flex-direction: column;
    }

    .topic-creator {
        margin-top: 0.2em;
        /* Kleinerer Abstand auf Mobile */
    }
}

/* about.html */

.about-container {
    max-width: 950px;
    padding: 1rem;
    line-height: 1.8;
}

.about-container h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5em;
}

.about-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color-light);
}

.about-section:last-child {
    border-bottom: none;
    margin-bottom: 1rem;
}

.about-section h2 {
    color: var(--text-color-light);
    font-size: 1.8em;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 0.8rem;
}

.about-section p,
.about-section ul li {
    color: var(--text-color);
    font-size: 1.05em;
    margin-bottom: 1em;
}

.about-section ul {
    list-style: disc;
    padding-left: 25px;
}

.about-section strong {
    color: var(--text-color-light);
}

.about-section a {
    color: var(--link-color);
}

.about-section a:hover {
    color: var(--link-color-hover);
}

/* Spezifische Styles für den Tutorial-Bereich */
.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.tutorial-card {
    background-color: var(--bg-content-block);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
}

.tutorial-card h3 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.tutorial-card p {
    font-size: 0.95em;
    color: var(--text-muted-color);
    margin-bottom: 1rem;
}

.tutorial-card .btn-watch-tutorial {
    /* Style für einen Button, falls du einen willst */
    display: inline-block;
    /* Weitere Button-Styles von .btn übernehmen oder hier definieren */
}

/* YouTube Embed Wrapper für Tutorials (falls du Videos direkt einbettest) */
.tutorial-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-bottom: 1rem;
    /* Abstand nach dem Video */
    border-radius: 4px;
}

.tutorial-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.licenses-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95em;
}

.licenses-table th,
.licenses-table td {
    border: 1px solid var(--border-color-medium);
    padding: 0.6rem 0.8rem;
    text-align: left;
    vertical-align: top;
}

.licenses-table th {
    background-color: var(--bg-light);
    color: var(--text-color-light);
    font-weight: bold;
}

.licenses-table td a {
    word-break: break-all;
    /* Lange URLs umbrechen */
}

.track-item.playing-now {
    background-color: var(--primary-color-hover);
    /* Oder eine andere Akzentfarbe */
    border-left: 5px solid var(--primary-color);
}

.track-item.playing-now .track-title-number {
    color: #fff;
    /* Beispiel: Hellerer Text für den Titel */
}

.album-player-controls {
    background-color: var(--bg-medium);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.album-player-controls button {
    margin: 0 0.5rem;
    min-width: 80px;
    /* Mindestbreite für die Buttons */
}

#currentPlayerTrackInfo {
    margin-top: 0.75em;
    font-size: 1em;
    color: var(--text-muted-color);
    min-height: 1.2em;
    /* Verhindert Springen, wenn kein Titel da ist */
}

#playerCurrentTrackTitle {
    color: var(--text-color-light);
    font-weight: bold;
}

/* Highlighting für den aktuell spielenden Track (aus vorheriger Antwort) */
.track-item.playing-now {
    background-color: var(--primary-color-hover);
    /* Oder eine andere Akzentfarbe */
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(217, 83, 79, 0.3);
    /* Leichter Schatten, passend zur Primärfarbe */
}

.track-item.playing-now .track-title-number {
    color: #fff;
}

/* Highlight für den per URL fokussierten Track */
.track-item.highlighted-track {
    border: 2px solid var(--primary-color) !important;
    /* Wichtig, um andere Borders zu überschreiben */
    background-color: #3a3a3a;
    /* Etwas dunklerer Hintergrund für Fokus */
}


.event-series-form {
    max-width: 850px;
}

.hidden-form-section {
    display: none;
}

.recurring-options-fields,
.weekly-specific-options,
.monthly-specific-options,
.monthly-bymonthday-options,
.monthly-bysetpos-options {
    padding-left: 1.5rem;
    margin-top: 1rem;
    border-left: 2px solid var(--border-color-medium);
    display: none;
    /* Standardmäßig versteckt, wird von JS gesteuert */
}

.form-group.form-check-inline {
    margin-right: 1rem;
}

.row>.form-group {
    margin-bottom: 1rem;
}

/* NEU: Styles für den Zeit-Konverter */
.time-converter-tool {
    background-color: #383838;
    border: 1px dashed var(--border-color);
    padding: 1rem;
    margin-top: 0.75rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.time-converter-tool p {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-muted-color);
}

.time-converter-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    /* Für kleinere Bildschirme */
}

.time-converter-inputs input[type="number"],
.time-converter-inputs select {
    padding: 0.4rem 0.6rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color-medium);
    color: var(--text-color-light);
    border-radius: 3px;
    font-size: 1em;
    /* Konsistente Schriftgröße */
}

.time-converter-inputs input[type="number"] {
    width: 65px;
    /* Breite für Stunden/Minuten */
}

#time-converter-output {
    margin-top: 0.75rem;
    font-weight: bold;
    color: var(--primary-color);
    min-height: 1.2em;
    /* Verhindert Springen des Layouts */
}

.btn-favorite-track,
.btn-favorite-remix-submission,
.btn-favorite-remix {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.4em;
    /* Größe des Herzens */
    padding: 0 10px 0 0;
    /* Rechts etwas Abstand zum Titel */
    vertical-align: middle;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* Diese Regeln hier funktionieren dann automatisch für beide Buttons */
.btn-favorite-track:hover,
.btn-favorite-remix-submission:hover,
.btn-favorite-remix:hover {
    transform: scale(1.2);
}

.btn-favorite-track .fa-solid.fa-heart,
.btn-favorite-remix-submission .fa-solid.fa-heart,
.btn-favorite-remix .fa-solid.fa-heart {
    color: var(--danger-bg);
}


.album-player-controls button#playerShuffleBtn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

@media (max-width: 475px) {

    .album-player-controls button {
        margin: 0 0.5rem;
        min-width: 20px;
    }



}





.bookmark-event-btn.active,
.favorite-track-btn.active {
    background-color: var(--primary-color);
    color: black;
    border-color: var(--primary-color);
}

.bookmark-event-btn.active .fa-bookmark,
.favorite-track-btn.active .fa-heart {
    color: var(--bg-main);
    /* Oder eine andere passende Farbe */
}



/* =================================== */
/* 9. DASHBOARD STYLING                */
/* =================================== */

/* Veraltete Action-Liste (Buttons) ausblenden, falls sie noch irgendwo existiert */
.dashboard-actions {
    display: none;
}

/* Neues Grid-Layout für die Dashboard-Panels */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Standard: Einspaltig für Mobile */
    gap: 2rem;
    /* Abstand zwischen den Panels */
    margin-top: 2rem;
}

/* Zweispaltiges Layout für größere Bildschirme */
@media (min-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr 2fr;
        /* Erstes Panel schmaler, zweites breiter */
    }
}

/* Styling für die einzelnen Panels/Karten */
.dashboard-panel {
    background-color: var(--bg-content-block);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.dashboard-panel h2 {
    font-size: 1.5em;
    color: var(--text-color-light);
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color-medium);
}

/* Liste der Links im ersten Panel */
.dashboard-panel-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-panel-links li {
    margin-bottom: 1rem;
}

.dashboard-panel-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1em;
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dashboard-panel-links a:hover {
    background-color: var(--primary-color-hover);
    color: #fff;
    text-decoration: underline;
}

.dashboard-panel-links a i {
    margin-right: 0.8rem;
    width: 20px;
    /* Sorgt für gleichmäßige Ausrichtung */
    text-align: center;
    color: var(--primary-color);
}

.dashboard-panel-links a:hover i {
    color: #fff;
}

/* Buttons im Content-Management-Panel */
.content-actions-buttons {
    display: flex;
    flex-direction: column;
    /* Stapelt Buttons untereinander */
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-dashboard-action {
    width: 80%;
    /* Füllt die Breite des Panels */
    text-align: center;
}

/* Bereich für "Manage My Releases" */
.releases-management-section {
    margin-top: 1rem;
}

.releases-management-section h3 {
    font-size: 1.2em;
    color: var(--text-muted-color);
    margin-bottom: 1rem;
}

.release-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Einzelner Release-Eintrag in der Management-Liste */
.release-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    border-bottom: 1px solid var(--border-color-medium);
    transition: background-color 0.2s ease;
}

.release-list-item:last-child {
    border-bottom: none;
}

.release-list-item:hover {
    background-color: #333;
}

.release-list-item .release-title-link {
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: 500;
}

.release-list-item .release-title-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.release-list-item .release-actions {
    display: flex;
    gap: 0.5rem;
}

/* Nachricht, wenn keine Inhalte vorhanden sind */
.no-content-message {
    text-align: center;
    color: var(--text-muted-color);
    padding: 2rem 0;
}

.dashboard-back-link-container {
    margin-bottom: 2rem;
    /* Abstand zum Inhalt darunter */
    margin-top: -1rem;
    /* Zieht den Button etwas näher an den Header */
}

/* Standard-Weg (Chrome, Firefox, Edge, Safari, Opera) */
.form-control::placeholder {
    color: #b1b0b0;
    /* Ein dunkleres Grau, das lesbar ist */
    opacity: 1;
    /* Stellt sicher, dass die Farbe nicht transparent ist (wichtig für Firefox) */
}

/* Fallback für ältere Browser (Legacy / Nicht-Standard) */
.form-control::-webkit-input-placeholder {
    /* Ältere Webkit/Blink-Browser */
    color: #b1b0b0;
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #b1b0b0;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #b1b0b0;
}

.join-container {
    max-width: 960px;
    margin: 2rem auto;
    padding: 1rem;
}

.join-header {
    text-align: center;
    margin-bottom: 3rem;
}

.join-header h1 {
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.join-header p {
    font-size: 1.2em;
    color: var(--text-muted-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Einspaltig auf Mobile */
    gap: 2.5rem;
}

/* Zweispaltig für Tablets, Dreispaltig für Desktops */
@media(min-width: 768px) {
    .benefits-grid {
        /* Hier könntest du 2 oder 3 Spalten wählen, je nach Präferenz */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.benefit-card {
    background-color: var(--bg-content-block);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.benefit-card-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h2 {
    font-size: 1.8em;
    color: var(--text-color-light);
    margin-top: 0;
    margin-bottom: 1rem;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    /* Sorgt dafür, dass die Karten gleich hoch sind */
}

.benefit-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05em;
}

.benefit-card ul li::before {
    content: '\f00c';
    /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.final-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color-medium);
}

.final-cta .btn {
    font-size: 1.2em;
    padding: 0.8rem 2.5rem;
}

.resend a {
    color: white !important;
    text-decoration: none;
}

.resend a:hover {
    text-decoration: underline;
}

.loading-overlay {
    position: fixed;
    /* Bleibt an Ort und Stelle, auch beim Scrollen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.85);
    /* Halbtransparenter dunkler Hintergrund */
    z-index: 9999;
    /* Stellt sicher, dass es über allem anderen liegt */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* Der Lade-Spinner (ein einfacher CSS-Spinner) */
.loading-spinner {
    border: 8px solid #f3f3f3;
    /* Heller Rand */
    border-top: 8px solid var(--primary-color);
    /* Primärfarbe für den sich drehenden Teil */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
}

.loading-text {
    margin-top: 20px;
    font-size: 1.2em;
    letter-spacing: 1px;
}

/* Die Animation für die Drehung */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.forum-post {
    background-color: var(--bg-content-block);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 1.5rem;

    /* --- KORREKTUR HIER --- */
    display: flex;
    flex-wrap: nowrap;
    /* Wichtig: Verhindert, dass die rechte Spalte unter die linke rutscht. */
    align-items: stretch;
    /* Stellt sicher, dass beide Spalten (Hintergründe) immer gleich hoch sind. */
}

.release-card .card-artist,
.profile-release-card .card-artist {
    font-size: 0.85em;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1;
    margin-top: auto;
    /* overflow, white-space und text-overflow werden entfernt, da sie jetzt im <a>-Tag sind */
}

/* 2. Dem <a>-Tag alle notwendigen Eigenschaften für ellipsis geben */
.release-card .card-artist a,
.profile-release-card .card-artist a {
    color: white;
    text-decoration: none;

    /* --- HIER IST DIE MAGIE --- */
    display: block;
    /* Macht den Link zu einem Block-Element, damit er eine Breite hat */
    overflow: hidden;
    /* Versteckt den überfließenden Text */
    white-space: nowrap;
    /* Verhindert, dass der Text umbricht */
    text-overflow: ellipsis;
    /* Schneidet den Text ab und fügt "..." hinzu */
}

.release-card .card-artist a:hover,
.profile-release-card .card-artist a:hover {
    text-decoration: underline;
}

.mobile-search {
    display: none;
}

.description-section a {
    color: #fff;
    text-decoration: none;
}

.description-section a:hover {
    text-decoration: underline;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    /* Schiebt Meta nach links und Actions nach rechts */
    align-items: flex-start;
    /* Richtet beides oben bündig aus */
    gap: 1rem;
    /* Abstand zwischen den Elementen */
    border-bottom: 1px dashed var(--border-color-light);
    /* Trennlinie zum comment-body */
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
}

.comment-meta {
    margin: 0;
    /* Setzt Standard-Margins von <p> zurück */
    flex-grow: 1;
    /* Sorgt dafür, dass die Meta-Info den verfügbaren Platz einnimmt */
    font-size: 0.9em;
    color: var(--text-muted-color);
}

.comment-actions {
    flex-shrink: 0;
    /* Verhindert, dass die Buttons schrumpfen oder umbrechen */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-actions form {
    margin: 0;
    /* Setzt Standard-Margins zurück */
}

.overview-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Dies ist der entscheidende Befehl für die vertikale Ausrichtung */
    flex-wrap: wrap;
    gap: 15px;

}

.add-content-action {
    margin-top: -15px;
}

.add-content-action-link {
    display: inline-block;
    padding: 0.4em 0.9em;
    background-color: #797979;
    /* RSS Orange oder eine deiner Akzentfarben */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;

}

.add-content-action-link:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
    color: white;
    text-decoration: underline;
}

@media (max-width: 470px) {
    .navbar-toggler {
        margin-bottom: 10px;
    }
}

.profile-dj-sets .dj-set-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dj-set-item {
    display: flex;
    align-items: flex-start;
    /* <-- Lösung: Richtet Elemente oben aus */
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

.dj-set-item:last-child {
    border-bottom: none;
}

.dj-set-item .set-icon {
    flex-shrink: 0;
    font-size: 2.5em;
    color: var(--primary-color);
    /* KORREKTUR: margin-top entfernt, um das "Herunterhängen" zu beheben */
    width: 40px;
    text-align: center;
}

.dj-set-item .set-details {
    flex-grow: 1;
    /* Nimmt den restlichen Platz ein */
    min-width: 0;
    /* Wichtig für Flexbox-Umbruch */
}

.dj-set-item .set-title {
    margin-top: 0;
    margin-bottom: 0.3rem;
    font-size: 1.2em;
    font-weight: 600;
}

.dj-set-item .set-title a {
    color: var(--text-color-light);
    text-decoration: none;
    word-break: break-word;


}

.dj-set-item .set-title a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.dj-set-item .set-meta {
    font-size: 0.9em;
    color: var(--text-muted-color);
    margin-bottom: 0.75rem;
}

.dj-set-item .set-meta span:not(:last-child)::after {
    content: " • ";
    /* Trenner zwischen den Metadaten */
    margin: 0 0.4em;
}

.dj-set-item .set-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--text-color);
    word-break: break-word;
    /* Stellt sicher, dass lange Links in der Beschreibung umgebrochen werden */
}

.dj-set-item .set-title a {
    color: var(--text-color-light);
    text-decoration: none;
    word-break: break-word;
    /* Stellt sicher, dass auch sehr lange Wörter umgebrochen werden */
}

.btn-secondary {
    background-color: #383838;
    border-color: var(--primary-color);
    color: #c0c0c0;
}

.btn-secondary:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
    color: white;
    text-decoration: underline;
}

.btn-back {
    text-decoration: none;
    font-size: 1em;
    padding: 0.4rem 1rem
}

.btn-back:hover {
    text-decoration: underline;
}

.track-details-toggle {
    background: none;
    border: 1px solid #555;
    color: #ccc;
    cursor: pointer;
    padding: 0.2rem 0.6rem;
    font-size: 0.8em;
    border-radius: 4px;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    transition: background-color 0.2s;
}

.track-details-toggle:hover {
    background-color: var(--primary-color-hover);
    color: white;
}

.track-details-content {
    background-color: #222;
    border: 1px solid #444;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 4px;
    display: none;
    /* Standardmäßig versteckt */
}

.public-track-details-toggle {
    font-size: 0.8em;
    margin-left: 10px;
    background: none;
    border: none;
    color: var(--link-color);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.public-track-details-toggle:hover {
    color: var(--link-color-hover);
}

.public-track-details-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
    display: none;
    /* Standardmäßig versteckt */
    font-size: 0.9em;
    line-height: 1.6;
    /* Wichtig für Zeilenumbrüche in Lyrics */
}

.public-track-details-content h4 {
    color: var(--primary-color);
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.track-detail-text-block {
    background-color: var(--bg-dark);
    /* Etwas dunkler als der Container */
    border-left: 3px solid var(--primary-color);
    padding: 0.8rem 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    /* Wichtig, um Zeilenumbrüche (z.B. in Lyrics) zu erhalten */
    line-height: 1.7;
    color: var(--text-color-light);
}

.creator-name:hover {
    text-decoration: underline;
}   

.track-info {
    display: flex;
    align-items: center;
    /* Richtet alle Elemente vertikal mittig aus */
    gap: 12px;
    /* Fügt einen kleinen Abstand zwischen den Elementen hinzu */
    width: 100%;
}

.track-title-number {
    flex-grow: 1;
    /* Lässt den Titel den gesamten verfügbaren Platz einnehmen */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.public-track-details-toggle {
    flex-shrink: 0;
    /* Verhindert, dass der Button schrumpft */
    min-width: 85px;
    /* Gibt dem Button eine feste Mindestbreite */
    text-align: center;
}

.details-placeholder {
    display: inline-block;
    flex-shrink: 0;
    width: 85px;
    /* Exakt die gleiche Mindestbreite wie der echte Button */
    content: '';
    /* Wichtig, damit das Element Raum einnimmt */
}

.share-track-btn {
    flex-shrink: 0;
    /* Verhindert, dass der Button schrumpft */
}

.set-details-toggle {
    display: block;
    /* Eigene Zeile für den Button */
    margin-top: 0.75rem;
    /* Etwas Abstand nach oben */
    font-size: 0.8em;
    background: none;
    border: none;
    color: var(--link-color);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.set-details-toggle:hover {
    color: var(--link-color-hover);
}

.search-context {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.context-snippet {
    font-size: 0.85em;
    font-style: italic;
    color: var(--text-muted-color);
    line-height: 1.5;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
    width: 90%;
    padding: 0.5rem 0.75rem;
}

.context-snippet .badge {
    display: block;
    width: fit-content;
    background-color: transparent;
    color: var(--text-color-light);
    padding: 0;
    margin: 0 0 0.4em 0;
    font-size: 0.9em;
    font-style: normal;
    font-weight: bold;
}

.snippet-text {
    max-height: 9em;
    /* Limitiert auf ca. 4 Zeilen (4 * 1.5em) */
    overflow: hidden;
    position: relative;
    /* Notwendig für das ::after-Pseudo-Element */
}


/* Container für Track-Suchergebnisse */
.track-results-list {
    list-style: none;
    padding: 0;
}

/* Einzelnes Track-Ergebnis-Item */
.track-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* Abstand zwischen Cover und Text */
    background-color: var(--bg-content-block);
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    transition: background-color 0.2s ease;
}

.track-result-item:hover {
    background-color: var(--bg-light);
}

/* Container für das Album-Cover */
.track-result-cover {
    flex-shrink: 0;
    /* Verhindert, dass das Bild schrumpft */
    width: 60px;
    height: 60px;
}

.track-result-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

/* Container für die Text-Details */
.track-result-details {
    flex-grow: 1;
    min-width: 0;
    /* Wichtig für korrekten Textumbruch in Flexbox */
}

.track-result-details a {
    font-weight: 500;
    color: var(--text-color-light);
    text-decoration: none;
}

.track-result-details a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Metadaten (by Artist on Album) */
.track-result-details .track-meta {
    font-size: 0.9em;
    display: block;
}

.track-result-details .track-meta a {
    font-weight: normal;
    /* Normales Gewicht für Links in Metadaten */
}

.dj-set-results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dj-set-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* Abstand zwischen Icon und Text */
    background-color: var(--bg-content-block);
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.set-result-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    /* Icon-Größe angepasst für die Box */
    color: var(--primary-color);
    background-color: var(--bg-dark);
    /* Hintergrund für die Icon-Box */
    border-radius: 3px;
}

.set-result-details {
    flex-grow: 1;
    min-width: 0;
}

.set-result-details h4.set-title {
    margin: 0 0 0.25rem 0;
    font-size: 1.15em;
}

.profile-back {
    margin-left: 80px;
}

.live-platform-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    min-height: 24px;
    /* Verhindert "Springen" des Layouts */
}

/* Der pulsierende Punkt, der NUR erscheint, wenn die Klasse .is-live vorhanden ist */
/* DIES IST DIE WICHTIGSTE REGEL! */
.live-platform-icons.is-live::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #ff3d3d;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

/* Die Icons selbst (unverändert) */
.live-platform-icon {
    font-size: 1.6rem;
    color: var(--text-muted-color, #888);
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Hover-Effekte (unverändert) */
.live-platform-icon:hover {
    transform: scale(1.2);
}

.live-platform-icon:hover .fa-twitch {
    color: #6441a5;
}

.live-platform-icon:hover .fa-gamepad {
    color: #53fc18;
}  


/* Die Puls-Animation (unverändert) */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 61, 61, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 61, 61, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 61, 61, 0);
    }
}

.remix-calls-grid {
    display: grid;
    /* Wir passen die Mindestbreite an, um die Kacheln etwas breiter zu machen,
       was auf den meisten Bildschirmen zu 3-4 Spalten führt.
       Ändern Sie '240px' auf einen Wert, der Ihnen gefällt.
    */
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* Die einzelne Remix-Kachel */
.remix-card {
    position: relative;
    background-color: #2c2c2e;
    /* Standard-Hintergrundfarbe */
    border: 1px solid #444;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    /* Transition für alle Effekte */
}

/* Der Hover-Effekt, jetzt MIT Farbänderung */
.remix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    background-color: #3a3a3c;
    /* NEU: Hellerer Farbton beim Hovern */
}

/* Stellt sicher, dass der Hauptlink keinen Unterstrich hat */
.remix-card .call-title a.stretched-link {
    color: inherit;
    text-decoration: none;
}

.remix-card .call-title a.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

/* Der separate Link für den Künstlernamen */
.remix-card .creator-name a {
    color: #a0a0a5;
    text-decoration: none;
    /* Kein Unterstrich im Normalzustand */
    position: relative;
    z-index: 2;
}

/* NUR den Künstlernamen beim Hovern unterstreichen */
.remix-card .creator-name a:hover {
    text-decoration: underline;
}


/* Styling für die restlichen Elemente bleibt gleich */
.remix-card .creator-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #555;
    background-color: #444;
}

.remix-card .call-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.remix-card .creator-name {
    font-size: 0.9rem;
    color: #a0a0a5;
    margin: 0 0 15px 0;
}

.remix-card .deadline-info {
    font-size: 0.8rem;
    color: #888;
    border-top: 1px solid #444;
    padding-top: 10px;
    margin-top: 10px;
}

/* CSS für die Remix Detailseite */
.remix-main-content .section-title {
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.remix-sidebar .sidebar-box {
    background-color: #2c2c2e;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.remix-sidebar .creator-avatar-sidebar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #555;
    margin-bottom: 15px;
}

.remix-sidebar .details-box ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #3a3a3c;
    font-size: 0.9rem;
}

.remix-sidebar .details-box ul li:last-child {
    border-bottom: none;
}

.remix-sidebar .details-box ul li span {
    color: #ccc;
}

.genre-link-remix{
    /* Behält Standard-Linkfarben bei oder spezifiziere hier */
    /* color: var(--link-color); */
    text-decoration: none;
    /* Oder underline, je nach Präferenz */
    border-radius: 3px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.album-player-controls .btn.active {
    /* Sie können hier Ihre primäre Akzentfarbe verwenden */
    background-color: var(--primary-color);
    color: white;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Optional: leichter "gedrückt"-Effekt */
}

.album-download-actions {
    text-align: left;
}

.form-group-website-url {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}



/* === Anpassungen für Mobile Track-Anzeige === */
/* Dieser Teil war bereits korrekt und kann bleiben */
@media (max-width: 480px) {
    .track-item .track-title-number {
        font-size: 0.95em;
    }

    .track-info .public-track-details-toggle,
    .track-info .share-track-btn {
        padding: 0.1rem 0.4rem;
        font-size: 0.7em;
    }

    .track-info .public-track-details-toggle {
        min-width: 70px;
    }

    .track-info .details-placeholder {
        width: 70px;
    }

    .btn-favorite-track {
        font-size: 1.2em;
        padding-right: 5px;
    }
}


/* --- Vollständigen Titel beim Abspielen anzeigen (Robuste Text-Wrap-Lösung) --- */

/* 1. Im Normalzustand wird der Text wie gewohnt mit "..." abgeschnitten. 
   Wir fügen nur min-width: 0 hinzu, ein Standard-Fix für Flexbox-Probleme. */
.track-title-number {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    /* Verhindert Probleme bei überlaufendem Inhalt in Flex-Containern */
}

/* 2. Wenn der Track abgespielt wird (.playing-now), werden diese Regeln aktiv. */
.track-item.playing-now .track-title-number {
    white-space: normal;
    /* ERLAUBT dem Text, auf die nächste Zeile umzubrechen */
    overflow: visible;
    /* STELLT SICHER, dass der umgebrochene Text sichtbar ist */
    text-overflow: clip;
    /* ENTFERNT die "..." Ellipsis */
}

@media (max-width: 480px) {
    .releases-grid,
        .profile-releases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 130px), 1fr)) !important;
            gap: 1.5rem;
        }
}

@media (max-width: 380px) {

    .releases-grid,
    .profile-releases-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 125px), 1fr)) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 330px) {

    .releases-grid,
    .profile-releases-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 115px), 1fr)) !important;
        gap: 1.5rem;
    }
}

.comment .comment-header {
    display: flex;
    align-items: flex-start; /* Richtet Avatar und Text oben aus */
    gap: 12px; /* Abstand zwischen Avatar und Text */
    margin-bottom: 0.75rem;
}

.comment .comment-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Macht das Bild rund */
    object-fit: cover; /* Verhindert Verzerrungen */
    border: 2px solid var(--border-color-medium);
    flex-shrink: 0; /* Verhindert, dass das Bild schrumpft */
}

.comment .comment-meta-info {
    flex-grow: 1; /* Nimmt den restlichen Platz ein */
}

.comment .comment-meta-info strong {
    display: block; /* Stellt sicher, dass der Name über dem Datum steht */
    margin-bottom: 2px;
}



.comment .comment-actions {
    padding-left: 57px; /* Richtet auch die Buttons aus */
    margin-top: 0.75rem;
}

@media (max-width: 576px) {
    .comment .comment-body,
    .comment .comment-actions {
        padding-left: 0; /* Entfernt den linken Einzug auf mobilen Geräten */
    }
}

@media (max-width: 456px) {
main.container {
        flex-grow: 1;
        padding-top: 20px;
        padding-bottom: 40px;
        max-width: 1100px;
        margin-top: 190px !important;
    }
}