/* =========================================================
   NEBREL CLIENT — DASHBOARD (KOMPLETT OPTIMIERT)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #07070b;
    --bg-soft: #0b0b12;
    --panel: #101018;
    --panel-soft: #14141e;
    --panel-hover: #191923;

    --border: rgba(255, 255, 255, 0.08);
    --border-purple: rgba(139, 92, 246, 0.32);

    --text: #ffffff;
    --text-soft: #a7a7b4;
    --text-muted: #696976;

    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --purple-dark: #6d28d9;

    --green: #22c55e;
    --red: #ef4444;
    --orange: #f59e0b;
    --blue: #3b82f6;

    --sidebar-width: 270px;
    --topbar-height: 76px;

    --radius: 14px;
    --radius-small: 9px;

    --transition: 180ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

/* ALLE BUTTONS GENERELL KORRIGIERT (Keine weißen Standard-Buttons mehr) */
button {
    border: 0;
    cursor: pointer;
    font: inherit;
    background: var(--panel-soft);
    color: var(--text);
}

input, textarea, select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: rgba(139, 92, 246, 0.35);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #08080d;
}

::-webkit-scrollbar-thumb {
    background: #292532;
    border-radius: 99px;
}

/* =========================================================
   LOGIN SCREEN
   ========================================================= */

.auth-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 72% 50%, rgba(124, 58, 237, 0.13), transparent 32%), #050508;
    isolation: isolate;
}

.auth-box {
    position: relative;
    z-index: 5;
    width: min(430px, calc(100vw - 36px));
    padding: 38px;
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(25, 25, 36, 0.92), rgba(10, 10, 16, 0.96));
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.65), 0 0 70px rgba(109, 40, 217, 0.10);
    backdrop-filter: blur(25px);
}

.auth-logo {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    overflow: hidden;
}

.auth-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#auth-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 10px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}

#auth-title::before {
    content: "Nebrel Client";
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

#auth-description {
    margin: 0 auto 28px;
    max-width: 330px;
    color: #858593;
    font-size: 13px;
    text-align: center;
}

#auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-field label {
    display: block;
    margin-bottom: 7px;
    color: #b9b9c4;
    font-size: 12px;
    font-weight: 600;
}

.auth-field input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    outline: none;
    background: rgba(7, 7, 12, 0.85);
    color: #fff;
}

.auth-button {
    width: 100%;
    height: 51px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    font-size: 14px;
    font-weight: 700;
    transition: opacity var(--transition);
}

.auth-button:hover {
    opacity: 0.9;
}

#auth-message {
    min-height: 20px;
    margin-top: 3px;
    color: var(--red);
    font-size: 12px;
    text-align: center;
}

/* =========================================================
   DASHBOARD LAYOUT & SIDEBAR
   ========================================================= */

.dashboard {
    min-height: 100vh;
    display: flex;
    background: var(--bg);
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    padding: 22px 14px;
    border-right: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(14, 14, 22, 0.98), rgba(8, 8, 13, 0.98));
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-top {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 8px 20px;
    background: transparent;
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
}

.brand-logo {
    width: 36px;
    height: 36px;
    min-width: 36px;
    max-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dashboard-brand strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.dashboard-brand strong span {
    color: var(--purple-light);
}

.dashboard-brand small {
    display: block;
    margin-top: 2px;
    color: #686875;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar-section {
    margin-bottom: 18px;
}

.sidebar-label {
    display: block;
    padding: 0 10px;
    margin-bottom: 6px;
    color: #555561;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-link {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 3px;
    padding: 0 11px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: #858591;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    transition: all var(--transition);
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.035);
    color: #d7d7df;
}

.sidebar-link.active {
    border-color: rgba(139, 92, 246, 0.14);
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.045));
    color: #c4b5fd;
}

.sidebar-icon {
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #686875;
    font-size: 15px;
}

.sidebar-link.active .sidebar-icon {
    color: var(--purple-light);
}

.sidebar-bottom {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-card {
    padding: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.025);
}

.user-avatar {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    font-size: 13px;
    font-weight: 800;
}

.user-info {
    min-width: 0;
    flex: 1;
}

.user-info strong {
    display: block;
    overflow: hidden;
    color: #eeeef3;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.user-info span {
    display: block;
    margin-top: 2px;
    color: #696975;
    font-size: 9px;
    text-transform: uppercase;
}

.logout-button {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(239, 68, 68, 0.13);
    border-radius: 9px;
    background: rgba(239, 68, 68, 0.07);
    color: #f87171;
    font-size: 11px;
    font-weight: 700;
    transition: background var(--transition);
}

.logout-button:hover {
    background: rgba(239, 68, 68, 0.15);
}

.back-website {
    display: block;
    text-align: center;
    padding: 6px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    transition: color var(--transition);
}

.back-website:hover {
    color: var(--text-soft);
}

/* =========================================================
   MAIN CONTENT AREA
   ========================================================= */

.main {
    min-width: 0;
    width: calc(100% - var(--sidebar-width));
    margin-left: var(--sidebar-width);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    border-bottom: 1px solid var(--border);
    background: rgba(7, 7, 11, 0.82);
    backdrop-filter: blur(18px);
}

.topbar-label {
    display: block;
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

#page-title {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 9px;
    background: rgba(34, 197, 94, 0.05);
    color: #4ade80;
    font-size: 12px;
    font-weight: 600;
}

.live-indicator span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.preview-button {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    transition: all var(--transition);
}

.preview-button:hover {
    border-color: var(--border-purple);
    background: rgba(139, 92, 246, 0.1);
}

.content {
    padding: 30px 32px 50px;
}

.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeIn 180ms ease;
}

/* =========================================================
   CARDS, PANELS & GENERAL ELEMENTS
   ========================================================= */

.welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.012));
}

.eyebrow {
    display: block;
    color: var(--purple-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.welcome h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.welcome p {
    color: var(--text-soft);
    font-size: 13px;
}

.welcome-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 9px;
    background: rgba(34, 197, 94, 0.08);
    color: #4ade80;
    font-size: 12px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.stat-card, .panel, .editor-panel, .team-member, .settings-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.012));
}

.stat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.stat-icon {
    color: var(--purple-light);
}

.stat-card strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.stat-card small {
    color: var(--text-muted);
    font-size: 11px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 18px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.panel-label {
    display: block;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.panel h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.panel-link {
    background: transparent;
    color: var(--purple-light);
    font-size: 12px;
    font-weight: 600;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.quick-actions button, .quick-action {
    min-height: 44px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.025);
    color: #aaaab5;
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    transition: all var(--transition);
}

.quick-actions button span {
    color: var(--purple-light);
}

.quick-actions button:hover {
    border-color: var(--border-purple);
    background: rgba(139, 92, 246, 0.07);
    color: #ddd4ff;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.015);
}

.activity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
}

.activity-item strong {
    display: block;
    font-size: 12px;
    color: #fff;
}

.activity-item span {
    color: var(--text-muted);
    font-size: 11px;
}

/* =========================================================
   PAGES, FORMS & EDITORS
   ========================================================= */

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.page-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.page-header p {
    color: var(--text-soft);
    font-size: 13px;
}

.save-button {
    height: 40px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border: 0;
    transition: opacity var(--transition);
}

.save-button:hover {
    opacity: 0.9;
}

.editor-grid, .feature-editor-grid, .plus-editor-grid, .settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

input[type="text"],
input[type="url"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(7, 7, 12, 0.85);
    color: #fff;
    outline: none;
    transition: border-color var(--transition);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--purple);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.status-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    margin-top: 10px;
}

.status-preview-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

/* Feature & Toggle Cards */
.feature-editor {
    position: relative;
}

.feature-number {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
}

.feature-editor h3 {
    margin-bottom: 12px;
}

.toggle-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.toggle-row input[type="checkbox"] {
    display: none;
}

.toggle {
    width: 36px;
    height: 20px;
    border-radius: 10px;
    background: var(--panel-hover);
    position: relative;
    transition: background var(--transition);
}

.toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: transform var(--transition);
}

.toggle-row input:checked + .toggle {
    background: var(--purple);
}

.toggle-row input:checked + .toggle::after {
    transform: translateX(16px);
}

/* Showcase & Previews */
.showcase-preview-panel {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--panel);
    display: flex;
    justify-content: center;
}

.showcase-preview-window {
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg);
    overflow: hidden;
}

.showcase-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--panel-soft);
    border-bottom: 1px solid var(--border);
    font-size: 10px;
    color: var(--text-muted);
}

.showcase-preview-dots {
    display: flex;
    gap: 6px;
}

.showcase-preview-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
}

.showcase-preview-content {
    padding: 30px;
    text-align: center;
}

.showcase-preview-label {
    color: var(--purple-light);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.showcase-preview-content h3 {
    font-size: 20px;
    color: #fff;
    margin: 8px 0;
}

.showcase-preview-content p {
    color: var(--text-soft);
    font-size: 12px;
    margin-bottom: 20px;
}

.showcase-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.showcase-preview-stats div {
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.showcase-preview-stats strong {
    display: block;
    font-size: 12px;
    color: #fff;
}

.showcase-preview-stats span {
    font-size: 10px;
    color: var(--text-muted);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 14px;
}

.member-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    font-weight: 800;
}

.team-member strong {
    display: block;
    color: #fff;
    font-size: 13px;
}

.team-member span {
    color: var(--text-muted);
    font-size: 11px;
}

.role-badge {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple-light);
    font-size: 10px;
    font-weight: 700;
}

.team-note {
    background: rgba(255, 255, 255, 0.015);
}

.team-note strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.team-note p {
    color: var(--text-soft);
    font-size: 12px;
}

/* Spezifische Korrektur für Team-Buttons / Aktionen (z.B. "Mitglied hinzufügen" etc.) */
#team button, .page#team button {
    background: var(--panel-soft) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    transition: all var(--transition);
}

#team button:hover, .page#team button:hover {
    border-color: var(--border-purple) !important;
    background: rgba(139, 92, 246, 0.1) !important;
    color: #fff !important;
}

/* Activity Panel */
.activity-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.activity-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.activity-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.activity-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple);
    margin-top: 5px;
}

.activity-row strong {
    display: block;
    color: #fff;
    font-size: 13px;
}

.activity-row small {
    color: var(--text-muted);
    font-size: 11px;
}

.announcement-type-preview div {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.announcement-type-preview span span {
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 10px;
    color: var(--text-soft);
}

.announcement-empty {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

/* =========================================================
   MODALS
   ========================================================= */

#team-modal, #edit-team-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
}

#team-modal.active, #edit-team-modal.active {
    display: flex !important;
}

.team-modal-box {
    width: min(500px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 24px;
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: 16px;
    background: linear-gradient(145deg, #15151f, #0c0c12);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.65);
}

.team-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.team-modal-header h2 {
    font-size: 18px;
    color: #fff;
    margin: 4px 0;
}

.team-modal-header p {
    color: var(--text-soft);
    font-size: 12px;
}

.modal-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 16px;
    border: 1px solid var(--border);
}

.team-form {
    display: flex;
    flex-direction: column;
}

/* =========================================================
   ANIMATIONS & RESPONSIVE
   ========================================================= */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dashboard-grid, .editor-grid, .feature-editor-grid, .plus-editor-grid, .settings-grid, .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    :root {
        --sidebar-width: 64px;
    }

    .dashboard-brand strong,
    .dashboard-brand small,
    .sidebar-label,
    .sidebar-link span:not(.sidebar-icon),
    .user-info,
    .logout-button span:not(:first-child),
    .back-website {
        display: none !important;
    }

    .dashboard-brand {
        justify-content: center !important;
        margin-bottom: 16px;
    }

    .sidebar-link {
        justify-content: center;
        padding: 0;
    }

    .main {
        width: calc(100% - 64px);
        margin-left: 64px;
    }

    .topbar {
        padding: 0 16px;
    }

    .content {
        padding: 20px 16px;
    }
}
.dashboard-client-image {
    width: 100% !important;
    max-width: 350px !important;
    height: auto !important;
    border-radius: 8px !important;
    display: block !important;
    margin: 0 auto !important;
}
.showcase-preview-window img {
    width: 100% !important;
    max-width: 700px !important; /* Hier kannst du die Größe anpassen (z.B. 300px oder 400px) */
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}