.wbx-wishlist {
    max-width: 640px;
    margin: 20px auto;
    padding: 16px;
    border-radius: 12px;
    background: #111827;
    color: #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wbx-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wbx-form input,
.wbx-form textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #374151;
    background: #020617;
    color: #e5e7eb;
    padding: 8px 10px;
    font-size: 14px;
}

.wbx-form input::placeholder,
.wbx-form textarea::placeholder {
    color: #6b7280;
}

.wbx-form button {
    align-self: flex-end;
    margin-top: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.wbx-form button:hover {
    background: #2563eb;
}

@media (max-width: 640px) {
    .wbx-wishlist {
        margin: 10px;
        padding: 12px;
    }
    .wbx-form button {
        width: 100%;
        align-self: stretch;
    }
}

/* ---------------------------------------------------------- */

.wbx-wishlist {
    --wbx-bg: #111827;
    --wbx-form-bg: #020617;
    --wbx-text: #e5e7eb;
    --wbx-btn-bg: #3b82f6;
    --wbx-btn-text: #ffffff;

    max-width: 640px;
    margin: 20px auto;
    padding: 16px;
    border-radius: 12px;
    background: var(--wbx-bg);
    color: var(--wbx-text);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wbx-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wbx-form input,
.wbx-form textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #374151;
    background: var(--wbx-form-bg);
    color: var(--wbx-text);
    padding: 8px 10px;
    font-size: 14px;
}

.wbx-form input::placeholder,
.wbx-form textarea::placeholder {
    color: #6b7280;
}

.wbx-form button {
    align-self: flex-end;
    margin-top: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: var(--wbx-btn-bg);
    color: var(--wbx-btn-text);
    font-weight: 600;
    cursor: pointer;
}

.wbx-box-header {
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: rgba(15,23,42,0.9); /* Fallback, falls kein Design gesetzt */
    color: #f9fafb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.wbx-box-header-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wbx-box-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.wbx-box-subtitle {
    margin: 0;
    font-size: 12px;
    opacity: 0.85;
}

.wbx-radio-player {
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(15,23,42,0.85);
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wbx-radio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.wbx-radio-title {
    font-weight: 600;
}

.wbx-radio-status {
    font-size: 12px;
    opacity: 0.8;
}

.wbx-radio-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.wbx-radio-btn {
    border: none;
    border-radius: 999px;
    padding: 4px 12px;
    cursor: pointer;
    font-size: 13px;
    background: #10b981;
    color: #ffffff;
    font-weight: 600;
}

.wbx-radio-btn:nth-child(2) {
    background: #ef4444;
}

.wbx-radio-volume-label {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

#wbx-radio-volume {
    width: 100px;
}

.wbx-info-banner {
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 8px;
    overflow: hidden;        /* verhindert, dass der Text aus dem Balken rausguckt */
    position: relative;
    white-space: nowrap;     /* eine Zeile */
}

.wbx-info-inner {
    #display: inline-block;
    white-space: nowrap;     /* Text bleibt in einer Zeile */
}

/* Scrollt nur den Text, nicht die Box */
@keyframes wbx-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Blink-Effekt nur für Text */
@keyframes wbx-blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.wbx-copyright {
    margin-top: 12px;
    font-size: 12px;
    text-align: center;
    opacity: 0.7;
}
