#futuristic-ui {
            display: none !important;
        }

body.theme-futuristic #futuristic-ui {
            display: flex !important;
            flex-direction: column;
            height: 100vh;
            width: 100%;
        }

body.theme-futuristic #theme-toggle-btn,
        body.theme-discord #theme-toggle-btn {
            display: none !important;
        }

body.theme-futuristic #futuristic-settings-btn-floating {
            display: none !important;
        }

/* =========================================================
           🚀 TEMA FUTURISTIC
           ========================================================= */
        body.theme-futuristic {
            --bg-base: #1a1a2e;
            --bg-surface: #16213e;
            --bg-card: #0f3460;
            --bg-input: #1a2744;
            --bg-hover: #1e3a5f;
            --tomato: #e63946;
            --tomato-dark: #c1121f;
            --tomato-glow: rgba(230, 57, 70, 0.35);
            --break-short: #4cc9f0;
            --break-short-glow: rgba(76, 201, 240, 0.35);
            --break-long: #7b2d8b;
            --break-long-glow: rgba(123, 45, 139, 0.35);
            --text-primary: #f0f4f8;
            --text-secondary: #8d99ae;
            --text-muted: #4a5568;
            --border: rgba(255, 255, 255, 0.07);
            --border-active: rgba(255, 255, 255, 0.18);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
            --accent: var(--tomato);
            --glow: var(--tomato-glow);
            --font-mono: 'JetBrains Mono', 'Courier New', monospace;
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', system-ui, sans-serif;
        }

body.theme-futuristic[data-pomostate="breve"] {
            --accent: var(--break-short);
            --glow: var(--break-short-glow);
        }

body.theme-futuristic[data-pomostate="lungo"] {
            --accent: var(--break-long);
            --glow: var(--break-long-glow);
        }

/* HEADER SBLOCCATO A TUTTO SCHERMO */
        body.theme-futuristic #futuristic-ui .app-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 10;
            background: rgba(26, 26, 46, 0.85);
            backdrop-filter: blur(12px);
            width: 100%;
        }

body.theme-futuristic #futuristic-ui .header-left,
        body.theme-futuristic #futuristic-ui .header-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

body.theme-futuristic #futuristic-ui .app-logo {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

body.theme-futuristic #futuristic-ui .conn-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #4ade80;
            box-shadow: 0 0 6px #4ade80;
        }

body.theme-futuristic #futuristic-ui .online-count {
            font-size: 0.8rem;
            color: var(--text-secondary);
            background: var(--bg-input);
            padding: 3px 10px;
            border-radius: 20px;
        }

body.theme-futuristic #futuristic-ui .app-main {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 1.5rem;
            flex: 1;
            padding: 1.5rem;
            overflow: hidden;
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
        }

body.theme-futuristic #futuristic-ui .timer-panel {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            position: relative;
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.5s;
        }

body.theme-futuristic #futuristic-ui .timer-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent);
            transition: background 0.5s;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }

body.theme-futuristic #futuristic-ui .mode-tabs {
            display: flex;
            gap: 0.4rem;
            background: var(--bg-input);
            border-radius: var(--radius-md);
            padding: 4px;
            width: 100%;
        }

body.theme-futuristic #futuristic-ui .mode-tab {
            flex: 1;
            padding: 0.5rem 0.6rem;
            border: none;
            border-radius: 10px;
            background: transparent;
            color: var(--text-secondary);
            font-size: 0.82rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s, color 0.2s, box-shadow 0.2s;
            white-space: nowrap;
        }

body.theme-futuristic #futuristic-ui .mode-tab:hover {
            color: var(--text-primary);
        }

body.theme-futuristic #futuristic-ui .mode-tab.active {
            background: var(--accent);
            color: white;
            box-shadow: 0 2px 12px var(--glow);
        }

body.theme-futuristic #futuristic-ui .timer-wrapper {
            position: relative;
            width: 240px;
            height: 240px;
            padding: 12px;
            margin: -12px;
        }

body.theme-futuristic #futuristic-ui .timer-ring-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

body.theme-futuristic #futuristic-ui .timer-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

body.theme-futuristic #futuristic-ui .timer-ring-bg {
            fill: none;
            stroke: var(--bg-input);
            stroke-width: 8;
        }

body.theme-futuristic #futuristic-ui .timer-ring-progress {
            fill: none;
            stroke: var(--accent);
            stroke-width: 8;
            stroke-linecap: round;
            transition: stroke-dashoffset 1s linear, stroke 0.5s;
        }

body.theme-futuristic #futuristic-ui .timer-inner {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

body.theme-futuristic #futuristic-ui .timer-display {
            font-family: var(--font-mono);
            font-size: 3.2rem;
            font-weight: 700;
            letter-spacing: -0.04em;
            color: var(--text-primary);
            line-height: 1;
            transition: color 0.3s;
        }

body.theme-futuristic #futuristic-ui .timer-mode-label {
            font-size: 0.78rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

body.theme-futuristic #futuristic-ui .timer-controls {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

body.theme-futuristic #futuristic-ui .btn-ctrl {
            width: 48px;
            height: 48px;
            border: 1px solid var(--border);
            border-radius: 50%;
            background: var(--bg-input);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s;
            display: grid;
            place-items: center;
            padding: 0;
        }

body.theme-futuristic #futuristic-ui .btn-ctrl:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: 0 0 12px var(--glow);
        }

body.theme-futuristic #futuristic-ui .btn-main {
            width: 72px;
            height: 72px;
            background: var(--accent);
            color: white;
            border: none;
            box-shadow: 0 4px 20px var(--glow);
        }

body.theme-futuristic #futuristic-ui .btn-main:hover {
            background: var(--accent);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 6px 28px var(--glow);
        }

body.theme-futuristic #futuristic-ui .btn-main.paused {
            background: var(--bg-card);
            border: 2px solid var(--accent);
            color: var(--accent);
            box-shadow: none;
            transform: none;
        }

body.theme-futuristic #futuristic-ui .pomodoro-tracker {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

body.theme-futuristic #futuristic-ui .pomodoro-icons {
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
            justify-content: center;
        }

body.theme-futuristic #futuristic-ui .pomo-icon {
            font-size: 1.5rem;
            opacity: 0.25;
            line-height: 1;
        }

body.theme-futuristic #futuristic-ui .pomo-icon.done {
            opacity: 1;
        }

body.theme-futuristic #futuristic-ui .total-count {
            font-size: 0.78rem;
            color: var(--text-muted);
            letter-spacing: 0.05em;
        }

body.theme-futuristic #futuristic-ui .chat-panel {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

body.theme-futuristic #futuristic-ui .chat-header {
            padding: 1rem 1.2rem 0.8rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

body.theme-futuristic #futuristic-ui .chat-title {
            font-weight: 700;
            font-size: 0.95rem;
        }

body.theme-futuristic #futuristic-ui .user-list-display {
            display: flex;
            flex-direction: row; /* Espansione orizzontale */
            flex-wrap: nowrap; /* Impedisce di andare a capo */
            justify-content: flex-end; /* Allinea a destra espandendo verso sinistra */
            align-items: center;
            gap: 8px;
            max-width: none; /* Rimuove il vincolo che rompeva il layout */
        }

body.theme-futuristic #futuristic-ui .user-list-display .user-pill {
            margin-bottom: 0 !important; /* Annulla i margini globali */
            width: max-content;
            background: var(--bg-input);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 4px 12px;
            cursor: default;
        }

body.theme-futuristic #futuristic-ui .user-chip {
            font-size: 0.7rem;
            background: var(--bg-input);
            color: var(--text-secondary);
            padding: 2px 8px;
            border-radius: 12px;
            border: 1px solid var(--border);
            max-width: 90px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

body.theme-futuristic #futuristic-ui .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 0.8rem 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            scrollbar-width: thin;
            scrollbar-color: var(--bg-card) transparent;
        }

/* AGGIORNATO TARGETING CSS CHAT FUTURISTICA (AVATAR) */
        body.theme-futuristic #futuristic-ui .msg {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 8px;
        }

body.theme-futuristic #futuristic-ui .msg-avatar-wrapper {
            display: block;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            overflow: hidden;
            background: var(--bg-card);
            flex-shrink: 0;
        }

body.theme-futuristic #futuristic-ui .msg-avatar {
            width: 100%;
            height: 100%;
        }

body.theme-futuristic #futuristic-ui .msg-content-wrapper {
            align-items: flex-start !important;
            width: auto !important;
        }

body.theme-futuristic #futuristic-ui .msg-name {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--accent);
            display: inline-block !important;
            /* Forza visualizzazione anche per 'me' */
        }

body.theme-futuristic #futuristic-ui .msg-time {
            font-size: 0.68rem;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }

body.theme-futuristic #futuristic-ui .msg-bubble {
            font-size: 0.88rem;
            color: var(--text-primary);
            line-height: 1.4;
            padding: 8px 14px; 
            background: var(--bg-input);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            margin-top: 2px;
            
            /* FIX DEFINITIVO PER I BORDI */
            width: fit-content !important; 
            display: block; /* Passiamo a block per gestire meglio l'allineamento */
            max-width: 100% !important; /* Riportiamo a 100% per evitare il doppio limite 85% dal parent */
            
            word-break: break-word;
            overflow-wrap: anywhere;
            white-space: pre-wrap;
        }

body.theme-futuristic #futuristic-ui .msg.mine {
            align-self: flex-end;
            margin-left: auto;
        }

body.theme-futuristic #futuristic-ui .msg.mine .msg-bubble {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--accent);
        }

body.theme-futuristic #futuristic-ui .chat-input-area {
            display: flex;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            border-top: 1px solid var(--border);
        }

body.theme-futuristic #futuristic-ui .chat-input-area input {
            flex: 1;
            font-size: 0.88rem;
            padding: 0.55rem 0.8rem;
            background: var(--bg-input);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            outline: none;
            transition: 0.2s;
        }

body.theme-futuristic #futuristic-ui .chat-input-area input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
        }

body.theme-futuristic #futuristic-ui .btn-send {
            padding: 0.55rem 0.9rem;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.2s, box-shadow 0.2s;
        }

body.theme-futuristic #futuristic-ui .btn-send:hover {
            background: var(--tomato-dark);
            box-shadow: 0 2px 12px var(--glow);
        }

body.theme-futuristic .btn-icon {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            font-size: 1.1rem;
            padding: 6px;
            border-radius: var(--radius-sm);
            transition: color 0.15s, background 0.15s;
        }

body.theme-futuristic .btn-icon:hover {
            color: var(--text-primary);
            background: var(--bg-input);
        }

body.theme-futuristic #countdown-text,
        body.theme-discord #countdown-text {
            color: var(--accent, #5865F2);
            text-shadow: 0 0 30px var(--glow, rgba(88, 101, 242, 0.5));
            font-family: var(--font-mono, 'JetBrains Mono', monospace);
        }

/* OVERRIDE GLOBALE MODALE PER TEMA FUTURISTIC & DISCORD */
        body.theme-futuristic .alert-box,
        body.theme-discord .alert-box {
            background: var(--bg-surface, #313338);
            border: 1px solid var(--border-active, #1E1F22);
            color: var(--text-primary, #DBDEE1);
            border-radius: var(--radius-lg, 12px);
            box-shadow: var(--shadow-card, 0 8px 32px rgba(0, 0, 0, 0.4));
        }

body.theme-futuristic .alert-header,
        body.theme-discord .alert-header {
            background: transparent;
            color: var(--text-primary, #F2F3F5);
            text-shadow: none;
            border-bottom: 1px solid var(--border, #1E1F22);
            font-size: 1.4rem;
            font-weight: 700;
            padding: 1.5rem;
        }

body.theme-futuristic .alert-body,
        body.theme-discord .alert-body {
            background: transparent;
            padding: 1.5rem;
        }

body.theme-futuristic .alert-input,
        body.theme-discord .alert-input {
            background: var(--bg-input, #1E1F22);
            border: 1px solid var(--border, #1E1F22);
            color: var(--text-primary, #DBDEE1);
            box-shadow: none;
            border-radius: var(--radius-sm, 4px);
        }

body.theme-futuristic .alert-btn,
        body.theme-discord .alert-btn {
            background: var(--accent, #5865F2);
            border: none;
            color: white;
            box-shadow: none;
            text-shadow: none;
            border-radius: var(--radius-sm, 4px);
            font-weight: 700;
            transition: transform 0.15s, box-shadow 0.15s;
        }

body.theme-futuristic .alert-btn:hover,
        body.theme-discord .alert-btn:hover {
            box-shadow: 0 4px 20px var(--glow, rgba(88, 101, 242, 0.4));
            transform: translateY(-1px);
        }

body.theme-futuristic .close-settings-btn,
        body.theme-discord .close-settings-btn {
            background: var(--bg-input, #4E5058);
            border: 1px solid var(--border, transparent);
            color: white;
            box-shadow: none;
            text-shadow: none;
        }

body.theme-futuristic .close-settings-btn:hover,
        body.theme-discord .close-settings-btn:hover {
            border-color: var(--accent, #5865F2);
            box-shadow: 0 0 12px var(--glow, transparent);
            transform: none;
        }

/* Elementi dentro modale per Futuristic/Discord */
        body.theme-futuristic .alert-box .dash-title,
        body.theme-discord .alert-box .dash-title {
            color: var(--text-primary, #F2F3F5);
            border-bottom: none;
            font-size: 1rem;
            margin-bottom: 10px;
        }

body.theme-futuristic .alert-box .theme-opt,
        body.theme-discord .alert-box .theme-opt {
            background: var(--bg-input, #1E1F22);
            border: 1px solid var(--border, transparent);
            color: var(--text-primary, #DBDEE1);
            border-radius: var(--radius-sm, 8px);
            font-size: 26px;
            padding: 10px;
            flex: 1;
            text-align: center;
            transition: 0.2s;
        }

body.theme-futuristic .alert-box .theme-opt:hover,
        body.theme-discord .alert-box .theme-opt:hover {
            background: var(--bg-hover, #2B2D31);
            border-color: var(--text-secondary, #949BA4);
        }

body.theme-futuristic .alert-box .theme-opt.active,
        body.theme-discord .alert-box .theme-opt.active {
            border-color: var(--accent, #5865F2);
            box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.15);
            background: var(--bg-input, #1E1F22);
        }

body.theme-futuristic .alert-box .preset-btn,
        body.theme-discord .alert-box .preset-btn {
            background: var(--bg-input, #1E1F22);
            border: 1px solid var(--border, transparent);
            color: var(--text-primary, #DBDEE1);
            border-radius: var(--radius-sm, 4px);
            padding: 10px;
            transition: 0.2s;
        }

body.theme-futuristic .alert-box .preset-btn span,
        body.theme-discord .alert-box .preset-btn span {
            color: var(--text-secondary, #949BA4);
        }

body.theme-futuristic .alert-box .preset-btn:hover,
        body.theme-discord .alert-box .preset-btn:hover {
            background: var(--bg-hover, #2B2D31);
        }

body.theme-futuristic .alert-box .preset-btn.active,
        body.theme-discord .alert-box .preset-btn.active {
            border-color: var(--accent, #5865F2);
            box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.15);
        }

body.theme-futuristic .alert-box .lcd-screen,
        body.theme-discord .alert-box .lcd-screen {
            background: var(--bg-input, #1E1F22);
            border: 1px solid var(--border, transparent);
            border-radius: var(--radius-sm, 8px);
            padding: 10px;
        }

body.theme-futuristic .alert-box .lcd-val,
        body.theme-discord .alert-box .lcd-val {
            color: var(--accent, #5865F2);
            font-family: var(--font-mono, monospace);
        }

body.theme-futuristic .alert-box .lcd-lbl,
        body.theme-discord .alert-box .lcd-lbl {
            color: var(--text-secondary, #949BA4);
        }

body.theme-futuristic .alert-box .audio-row,
        body.theme-discord .alert-box .audio-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

body.theme-futuristic .alert-box .mute-btn,
        body.theme-discord .alert-box .mute-btn {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm, 4px);
            background: var(--bg-input, #1E1F22);
            border: 1px solid var(--border, transparent);
            color: var(--text-secondary, #949BA4);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.15s, color 0.15s;
        }

body.theme-futuristic .alert-box .mute-btn:hover,
        body.theme-discord .alert-box .mute-btn:hover {
            background: var(--bg-hover, #2B2D31);
            color: var(--text-primary, #F2F3F5);
        }

body.theme-futuristic .alert-box .mute-btn.muted,
        body.theme-discord .alert-box .mute-btn.muted {
            color: var(--tomato, #DA373C);
        }

body.theme-futuristic .alert-box .switch-row,
        body.theme-discord .alert-box .switch-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary, #DBDEE1);
            text-shadow: none;
            margin-bottom: 20px;
        }

body.theme-futuristic .alert-box .ios-switch,
        body.theme-discord .alert-box .ios-switch {
            position: relative;
            width: 46px;
            height: 24px;
            background: var(--bg-input, #1E1F22);
            border: 1px solid var(--border, transparent);
            box-shadow: none;
            border-radius: 12px;
            cursor: pointer;
            transition: 0.3s;
        }

body.theme-futuristic .alert-box .ios-switch::after,
        body.theme-discord .alert-box .ios-switch::after {
            content: "";
            position: absolute;
            top: 2px;
            left: 2px;
            width: 18px;
            height: 18px;
            background: var(--text-secondary, #949BA4);
            border: none;
            border-radius: 50%;
            box-shadow: none;
            transition: 0.3s;
        }

body.theme-futuristic .alert-box .ios-switch.on,
        body.theme-discord .alert-box .ios-switch.on {
            background: var(--accent, #23A559);
            border-color: var(--accent, #23A559);
            box-shadow: 0 0 10px var(--glow, transparent);
        }

body.theme-futuristic .alert-box .ios-switch.on::after,
        body.theme-discord .alert-box .ios-switch.on::after {
            background: #fff;
            transform: translateX(20px);
        }

body.theme-futuristic .alert-box input[type=range],
        body.theme-discord .alert-box input[type=range] {
            -webkit-appearance: none;
            flex: 1;
            width: auto;
            background: transparent;
            outline: none;
            cursor: pointer;
        }

body.theme-futuristic .alert-box input[type=range]::-webkit-slider-runnable-track,
        body.theme-discord .alert-box input[type=range]::-webkit-slider-runnable-track {
            width: 100%;
            height: 5px;
            border-radius: 4px;
            background: var(--bg-input, #1E1F22);
            border: 1px solid var(--border, transparent);
            box-shadow: none;
        }

body.theme-futuristic .alert-box input[type=range]::-webkit-slider-thumb,
        body.theme-discord .alert-box input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none;
            height: 16px;
            width: 16px;
            border-radius: 50%;
            background: var(--accent, #5865F2);
            border: 2px solid var(--text-primary, #fff);
            box-shadow: none;
            margin-top: -6px;
            transition: transform 0.15s, box-shadow 0.15s;
        }

body.theme-futuristic .alert-box input[type=range]::-webkit-slider-thumb:hover,
        body.theme-discord .alert-box input[type=range]::-webkit-slider-thumb:hover {
            transform: scale(1.12);
            box-shadow: 0 0 8px var(--glow, transparent);
        }

/* Adattamento Tema Futuristico */
        body.theme-futuristic .scroll-bottom-btn {
            background: var(--bg-input);
            border: 1px solid var(--accent);
            color: var(--accent);
            box-shadow: 0 0 10px var(--glow);
        }

/* FIX BUG TEMA FUTURISTICO: Ripristino Input e Bolle Chat */
        body.theme-futuristic .chat-input,
        body.theme-futuristic input[type="text"] {
            background-color: rgba(255, 255, 255, 0.05) !important;
            color: #ffffff !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
        }

body.theme-futuristic .msg-bubble {
            background-color: #1a1f35 !important; /* Sfondo scuro di base per i messaggi */
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

body.theme-futuristic .msg.mine .msg-bubble {
            background-color: rgba(255, 71, 87, 0.08) !important; /* Leggero alone rosso per i propri messaggi */
            border: 1px solid #ff4757 !important; /* Bordo rosso accentato */
        }

/* FIX LAYOUT E INPUT CHAT FUTURISTICA */
        body.theme-futuristic .chat-input-area {
            background: var(--bg-panel) !important;
            border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
        }

body.theme-futuristic .chat-input-area textarea,
        body.theme-futuristic .chat-input-area input {
            background: transparent !important;
            color: #ffffff !important;
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
        }

body.theme-futuristic .chat-input-area textarea::placeholder,
        body.theme-futuristic .chat-input-area input::placeholder {
            color: rgba(255, 255, 255, 0.4) !important;
        }

body.theme-futuristic .msg.mine {
            display: flex !important;
            flex-direction: row-reverse !important;
            align-items: flex-start !important;
            gap: 10px !important;
        }

body.theme-futuristic #futuristic-ui .msg.mine .msg-header {
            display: flex !important;
            flex-direction: row-reverse !important;
            justify-content: flex-start !important;
            align-items: center !important;
            gap: 6px !important;
        }

body.theme-futuristic #futuristic-ui .msg.mine .msg-content-wrapper {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-end !important;
        }
