/* ==========================================
   WUNSCHZETTEL 🎀 - Stylesheet
   Hell, clean, verspielt
   ========================================== */

:root {
    --primary: #9C27B0;
    --primary-light: #E1BEE7;
    --bg: #FAFAFA;
    --card-bg: #FFFFFF;
    --text: #333333;
    --text-light: #666666;
    --border: #E0E0E0;
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
    --radius: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* ---- NAVBAR ---- */
.navbar {
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text);
    border-radius: 8px;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.nav-link:hover {
    background: var(--primary-light);
}

.nav-logout {
    color: var(--danger);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
    }
}

/* ---- CONTAINER ---- */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* ---- LOGIN ---- */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #F3E5F5 0%, #FFF3E0 100%);
}

.login-container {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
    margin: 1rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.login-header h1 {
    color: var(--primary);
    font-size: 1.8rem;
}

.login-header p {
    color: var(--text-light);
    margin-top: 0.3rem;
}

/* ---- FORMS ---- */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: var(--card-bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input[type="file"] {
    padding: 0.5rem;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    background: var(--border);
    color: var(--text);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #7B1FA2;
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-warning {
    background: var(--warning);
    color: white;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-full {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

/* ---- ALERTS ---- */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-error {
    background: #FFEBEE;
    color: var(--danger);
    border: 1px solid #FFCDD2;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

/* ---- DASHBOARD ---- */
.greeting {
    margin-bottom: 1.5rem;
}

.greeting h2 {
    font-size: 1.5rem;
}

/* ---- COUNTDOWN ---- */
.countdown-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid;
    margin-bottom: 2rem;
}

.countdown-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.countdown-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.countdown-timer {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.countdown-timer .unit {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
}

.countdown-timer .time-block {
    display: inline-block;
    margin: 0 0.5rem;
    min-width: 60px;
}

.countdown-timer .time-value {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
}

.countdown-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.countdown-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.countdown-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s;
}

/* ---- UPCOMING EVENTS ---- */
.upcoming-section {
    margin-bottom: 2rem;
}

.upcoming-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.upcoming-list {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.upcoming-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid var(--border);
    gap: 0.8rem;
}

.upcoming-item:last-child {
    border-bottom: none;
}

.upcoming-icon {
    font-size: 1.3rem;
}

.upcoming-name {
    flex: 1;
    font-weight: 500;
}

.upcoming-days {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ---- USER GRID ---- */
.quick-links h3 {
    margin-bottom: 1rem;
}

.user-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.user-grid.large {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.user-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow);
    border-left: 4px solid;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.user-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.user-avatar.large {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.user-wishes {
    font-size: 0.8rem;
    color: var(--text-light);
}

.user-badge {
    font-size: 0.75rem;
    background: #FFF3E0;
    color: #E65100;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* ---- WISHES ---- */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.wishes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wish-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: all 0.2s;
}

.wish-card:hover {
    box-shadow: var(--shadow-hover);
}

.wish-card.reserved {
    opacity: 0.7;
    background: #F5F5F5;
}

.wish-card.reserved-by-me {
    background: #E8F5E9;
    border-left-color: var(--success);
}

.wish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.wish-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.wish-priority {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.priority-hoch { background: #FFEBEE; color: var(--danger); }
.priority-normal { background: #E3F2FD; color: #1976D2; }
.priority-niedrig { background: #F5F5F5; color: var(--text-light); }

.wish-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.wish-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.wish-link {
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: none;
    background: var(--primary-light);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.wish-link:hover {
    background: #CE93D8;
    color: white;
}

.wish-images {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.wish-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    border: 2px solid var(--border);
}

.wish-img:hover {
    transform: scale(1.05);
}

.wish-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}

.reservation-section {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}

.reservation-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background: #FFF3E0;
    border-radius: 6px;
    display: inline-block;
    font-weight: 500;
}

.reservation-badge.admin {
    background: #E8F5E9;
}

.inline-form {
    display: inline;
}

/* ---- MODAL ---- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-light);
}

/* ---- LINK ROWS ---- */
.link-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.link-row input {
    flex: 1;
}

/* ---- EXISTING IMAGES ---- */
.existing-images {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.existing-image {
    text-align: center;
}

.existing-image .thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin-bottom: 0.3rem;
}

/* ---- PROFILE ---- */
.profile-section {
    max-width: 500px;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ---- ADMIN ---- */
.admin-info {
    background: #E3F2FD;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* ---- EMPTY STATE ---- */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* ---- IMAGE LIGHTBOX ---- */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 500px) {
    .container {
        padding: 1rem;
    }
    .countdown-timer .time-value {
        font-size: 1.6rem;
    }
    .countdown-timer .time-block {
        min-width: 45px;
        margin: 0 0.3rem;
    }
    .user-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-header {
        flex-direction: column;
        align-items: stretch;
    }
    .wish-actions {
        flex-direction: column;
    }
    .link-row {
        flex-direction: column;
    }
}


/* ═══════════════════════════════════════════
   UPDATE #1: Bottom-Nav + Notifications + FAQ
   ═══════════════════════════════════════════ */

/* ---- BOTTOM NAV ---- */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 0.5rem 0;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.7rem;
    padding: 0.3rem 0;
    transition: color 0.2s;
    position: relative;
    flex: 1;
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-icon {
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.bottom-nav-label {
    font-weight: 500;
}

.nav-badge {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(12px);
    background: var(--danger);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }
    .desktop-nav {
        display: none;
    }
    main.container {
        padding-bottom: 80px;
    }
}

@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
}

/* ---- NAV ACTIVE STATE (Desktop) ---- */
.nav-link.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

/* ---- NOTIFICATION BAR ---- */
.notification-bar {
    background: #FFF3E0;
    border-bottom: 2px solid #FFE0B2;
    padding: 0.8rem 0;
}

.notification-item {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.notification-item.notification-expired {
    color: var(--danger);
}

.notification-item.notification-reminder {
    color: #E65100;
}

.notification-item.notification-reservation {
    color: var(--primary);
}

.notification-more {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0.3rem 0;
}

/* ---- NOTIFICATIONS PAGE ---- */
.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.notification-card {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--border);
}

.notification-card.notification-expired {
    border-left-color: var(--danger);
}

.notification-card.notification-reminder {
    border-left-color: var(--warning);
}

.notification-card.notification-purchased {
    border-left-color: var(--success);
}

.notification-card.notification-reservation {
    border-left-color: var(--primary);
}

.notification-message {
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.notification-time {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ---- MY RESERVATIONS (Dashboard) ---- */
.my-reservations {
    margin-bottom: 1.5rem;
}

.my-reservations h3 {
    margin-bottom: 0.8rem;
}

.reservations-list {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.reservation-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border);
    gap: 0.8rem;
    flex-wrap: wrap;
}

.reservation-item:last-child {
    border-bottom: none;
}

.reservation-item.urgent {
    background: #FFF3E0;
}

.reservation-info {
    flex: 1;
    min-width: 120px;
}

.reservation-info strong {
    display: block;
    font-size: 0.95rem;
}

.reservation-for {
    font-size: 0.8rem;
    color: var(--text-light);
}

.reservation-timer {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--warning);
}

.reservation-item.urgent .reservation-timer {
    color: var(--danger);
}

/* ---- LIST PAGE: Status Badges ---- */
.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-purchased {
    background: #E8F5E9;
    color: #2E7D32;
}

.status-mine {
    background: #E3F2FD;
    color: #1565C0;
}

.status-taken {
    background: #F5F5F5;
    color: var(--text-light);
}

.days-left {
    display: block;
    font-size: 0.8rem;
    color: var(--warning);
    margin-top: 0.3rem;
    font-weight: 500;
}

.days-left.urgent {
    color: var(--danger);
    font-weight: 700;
}

.reservation-my {
    width: 100%;
}

.reservation-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.wish-card.purchased {
    opacity: 0.6;
    background: #E8F5E9;
    border-left-color: var(--success);
}

/* ---- FAQ / HELP ---- */
.help-page {
    max-width: 600px;
    margin: 0 auto;
}

.help-header {
    text-align: center;
    margin-bottom: 2rem;
}

.help-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.help-header h2 {
    color: var(--primary);
}

.help-header p {
    color: var(--text-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #F5F5F5;
}

.faq-toggle {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
    transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.2rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.2rem 1.2rem;
}

.faq-answer p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer ul, .faq-answer ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.3rem;
}

/* ---- WELCOME MODAL ---- */
.welcome-modal {
    max-width: 450px;
}

.welcome-content p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.welcome-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.welcome-step {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.step-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.welcome-step div {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ---- ADMIN ---- */
.admin-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.admin-section:last-child {
    border-bottom: none;
}

.admin-section h3 {
    margin-bottom: 0.8rem;
}

.user-reset-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.user-reset-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.user-reset-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.user-reset-name {
    font-weight: 500;
}

/* ---- CARD ---- */
.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.card h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}
/* Changelog Popup */
.changelog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.changelog-popup {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.changelog-popup h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.changelog-entry {
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.changelog-version {
    background: #9C27B0;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Preis Badge */
.wish-price {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 8px;
}