/* Grundlayout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto; /* Zentriert den Inhalt horizontal */
}


header {
    background-color: #1e1e1e;
    padding: 10px;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #1e1e1e;
    flex-wrap: wrap;
}

.logo {
    height: 80px;
    margin-right: 20px;
    transition: height 0.3s;
}

.header-text h1 {
    font-size: 2em;
    color: #ff4d4d;
    margin: 0;
}

.header-text p {
    font-size: 1em;
    color: #b0b0b0;
    margin-top: 5px;
    text-align: left;
}

/* Hauptbild */
.main-image {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 20px;
}

.main-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Podcast Header und Sortierung */
.podcast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.podcast-header h2 {
    margin: 0;
    font-size: 1.8em;
    color: #ff4d4d;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-button {
    background-color: #ff4d4d;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.sort-button:hover {
    background-color: #ff7b7b;
    transform: scale(1.05);
}

.sort-button i {
    font-size: 1.2em;
}

/* Podcast Liste */
.podcast-list {
    padding: 20px;
}

.podcast-list h2 {
    text-align: center;
    font-size: 1.8em;
    color: #ff4d4d;
    margin-bottom: 20px;
}

.podcast-item {
    display: flex;
    background-color: #1e1e1e;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    transition: transform 0.3s;
}

.podcast-item:hover {
    transform: scale(1.02);
    background-color: #292929;
}

.podcast-item img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    margin-right: 20px;
}

.podcast-info h3 {
    color: #ffffff;
    font-size: 1.4em;
}

.podcast-info p {
    color: #b0b0b0;
    margin: 10px 0;
}

.meta-info span {
    display: block;
    font-size: 0.9em;
    color: #757575;
    margin-top: 8px;
}

/* Podcast-Link Icons hervorgehoben */
.podcast-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.podcast-links a {
    font-size: 2em;
    color: #ff4d4d;
    transition: color 0.3s, transform 0.3s;
}

.podcast-links a:hover {
    color: #ffffff;
    transform: scale(1.2);
}
/* Prominente Links zu Spotify und YouTube */
.main-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.main-links a {
    padding: 10px 20px;
    font-size: 1.2em;
    color: #ffffff;
    background-color: #ff4d4d;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.main-links a:hover {
    background-color: #ff7b7b;
    transform: scale(1.05);
}
/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #1e1e1e;
    color: #757575;
    font-size: 0.9em;
}

/* Detailseite für Podcast */
.podcast-detail {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
}

.podcast-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.podcast-thumbnail {
    width: 150px;
    border-radius: 8px;
}

.podcast-info h2 {
    color: #ff4d4d;
}

/* Bewertungsbereich */
.podcast-rating h3, .podcast-transcript h3, .additional-info h3 {
    color: #ff4d4d;
    margin-top: 20px;
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.rating-stars i {
    font-size: 1.5em;
    color: #ff4d4d;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.rating-stars i:hover {
    transform: scale(1.2);
}

.rating-stars i.fas {
    color: #ffcc00; /* Farbänderung für ausgewählte Sterne */
}

/* Transkriptbereich */
.podcast-transcript p, .additional-info ul {
    line-height: 1.6;
    color: #b0b0b0;
    margin: 10px 0;
}

/* Weitere Informationen */
.additional-info ul {
    list-style: none;
    padding: 0;
}

.additional-info ul li {
    margin-bottom: 10px;
}
/* Podcast-Beschreibung */
.podcast-description {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    color: #ffffff;
    line-height: 1.6;
}

.podcast-description h3 {
    font-size: 1.8em;
    color: #ff4d4d;
    margin-bottom: 15px;
}

.podcast-description p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 1em;
}

.podcast-description p:last-child {
    margin-bottom: 0;
}

/* Optionaler Effekt für Hervorhebung */
.podcast-description p::first-letter {
    font-size: 1.2em;
    font-weight: bold;
    color: #ff4d4d;
}
/* Responsive Design für mobile Geräte */
@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }
    .logo {
        display: none; /* Logo auf Mobilgeräten ausblenden */
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-text h1 {
        font-size: 1.6em;
        font-weight: bold;
    }

    .header-text p {
        font-size: 0.9em;
    }

    .podcast-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .sort-options {
        flex-wrap: wrap;
    }

    .podcast-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .podcast-item img {
        margin: 0 0 15px 0;
    }

    .main-links {
        flex-direction: column;
        gap: 15px;
    }
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
}

h1, h2, h3, h4 {
    color: #ff4d4d;
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
    color: #ffffff;
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #2c2c2c;
    color: #ffffff;
}

button {
    background-color: #ff4d4d;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #ff7b7b;
    transform: scale(1.05);
}

#manage-related, #related-people-list {
    margin-top: 30px;
    padding: 20px;
    background-color: #292929;
    border-radius: 8px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding: 10px;
    background-color: #1e1e1e;
    margin-bottom: 5px;
    border-radius: 5px;
}
