.album-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-height: 600px;
    background-color: var(--header-color, #ececec);
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.album-header-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(0.5 * 100%);
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s ease;
}

.album-header-top-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Konsistentes und auffälliges Burger-Menü und Greetings */
.menu-toggle,
.greeting {
    position: absolute;
    top: 15px;
    z-index: 5;
    transition: all 0.3s ease;
}

.menu-toggle {
    right: 20px;
}

.greeting {
    left: 20px;
    padding: 8px 15px;
    cursor: pointer;
}

.dropdown-button.menu-pill,
.greeting.menu-pill {
    background: rgba(255, 255, 255, 0.15); /* Einheitlicher transparenter Hintergrund */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px; /* Pill-Design */
    padding: 10px 15px;
    font-size: 1.8rem; /* Größer für Auffälligkeit */
    color: var(--general-font-color) !important; /* Weiß erzwingen */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-button.menu-pill {
    font-size: 1.5rem; /* Anpassung für das Icon */
}

.dropdown-button.menu-pill:hover,
.greeting.menu-pill:hover {
    background: rgba(255, 255, 255, 0.25); /* Dunklerer Hover-Hintergrund */
    color: #d4a373; /* Einheitliche Akzentfarbe */
    transform: translateY(-2px); /* Leichtes Hochheben */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

}





.dropdown-button.menu-pill:active,
.greeting.menu-pill:active {
    transform: scale(0.98); /* Leichtes Einrücken beim Klick */
}

.dropdown-menu {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dropdown-item {
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

#changeAlbumHeaderColorButton,
#colorPickerContainer,
#albumHeaderColorPickerContainer {
    transition: all 0.3s ease;
}

#changeAlbumHeaderColorButton:hover {
    transform: scale(1.1);
}

.album-title-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    border: 4px solid var(--accent-color, #d4a373);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-title-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.title-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-title-circle:hover .title-image {
    transform: scale(1.05);
}

.placeholder-icon {
    font-size: 1.2rem;
    color: #999;
}

.edit-title-image-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #d4a373;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.edit-title-image-button:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.album-header-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}

.album-title {
    margin-top: 15px;
    text-align: center;
}

.album-description {
    text-align: center;
    max-width: 600px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .album-header-top {
        height: calc(0.45 * 100%);
    }

    .album-title-circle {
        width: 100px;
        height: 100px;
    }

    .menu-pill {
        padding: 6px 12px; /* Etwas kleiner für mobile Geräte */
    }
}

@media (max-width: 480px) {
    .album-title-circle {
        width: 90px;
        height: 90px;
    }

    .menu-pill {
        padding: 5px 10px; /* Noch kleiner für sehr kleine Bildschirme */
    }
}