.wbx-mod-panel {
    max-width: 960px;
    margin: 20px auto;
    padding: 14px;
    border-radius: 12px;
    background: #020617;
    color: #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wbx-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.wbx-header h2 {
    margin: 0;
    font-size: 18px;
}

.wbx-header-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
}

.wbx-header-controls label {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wbx-header-controls button {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #374151;
    background: #111827;
    color: #e5e7eb;
    cursor: pointer;
}

.wbx-header-controls button:hover {
    background: #1f2937;
}

.wbx-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.wbx-tabs button {
    border: none;
    border-radius: 999px;
    background: #111827;
    color: #9ca3af;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 13px;
}

.wbx-tabs button.active {
    background: #3b82f6;
    color: #fff;
}

.wbx-tabs span {
    margin-left: 4px;
    font-size: 11px;
}

.wbx-wish {
    border-radius: 10px;
    border: 1px solid #1f2937;
    padding: 8px 10px;
    margin-bottom: 8px;
    background: #020617;
}

.wbx-wish-head {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    font-size: 13px;
}

.wbx-wish-title {
    font-weight: 600;
}

.wbx-wish-meta {
    font-size: 11px;
    color: #9ca3af;
    white-space: nowrap;
}

.wbx-wish-message {
    margin-top: 4px;
    padding: 4px 6px;
    border-radius: 6px;
    background: #111827;
    font-size: 13px;
}

.wbx-wish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.wbx-status {
    font-size: 11px;
    background: #111827;
    padding: 2px 6px;
    border-radius: 999px;
}

.wbx-wish-buttons {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.wbx-wish-buttons .wbx-action {
    border: none;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 11px;
    cursor: pointer;
    background: #111827;
    color: #e5e7eb;
}

.wbx-wish-buttons .wbx-action:hover {
    background: #1f2937;
}

.wbx-empty {
    font-size: 13px;
    color: #9ca3af;
}

/* Mod-Login */
.wbx-mod-login-wrap {
    max-width: 360px;
    margin: 20px auto;
    padding: 14px;
    border-radius: 12px;
    background: #020617;
    color: #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.wbx-mod-login-wrap input {
    width: 100%;
    margin-bottom: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #374151;
    background: #020617;
    color: #e5e7eb;
}

.wbx-mod-login-wrap button {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: none;
    background: #3b82f6;
    color: #fff;
    cursor: pointer;
}

#wbx-mod-login-error {
    margin-top: 6px;
    font-size: 12px;
    color: #fecaca;
}

/* Responsive */
@media (max-width: 768px) {
    .wbx-mod-panel {
        margin: 10px;
        padding: 10px;
    }
    .wbx-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .wbx-wish-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .wbx-wish-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .wbx-wish-buttons {
        width: 100%;
    }
    .wbx-wish-buttons .wbx-action {
        flex: 1 1 auto;
        text-align: center;
    }
}
