
        body {
            font-family: 'Fira Code', monospace;
            background-color: #282a36;
            color: #f8f8f2;
        }

        /* User Header Styles */
        .user-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            background: #44475a;
            border-radius: 6px;
            margin-bottom: 15px;
        }
        .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .user-name {
            color: #bd93f9;
            font-weight: bold;
        }
        .user-badge {
            background: #6272a4;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            color: #f8f8f2;
        }
        .user-actions {
            display: flex;
            gap: 10px;
        }
        .btn-settings {
            background: #bd93f9;
            color: #282a36;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.2s;
        }
        .btn-settings:hover {
            background: #ff79c6;
            transform: translateY(-1px);
        }
        .btn-logout {
            background: #ff5555;
            color: #f8f8f2;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-logout:hover {
            background: #ff6e6e;
        }

        /* Active Users Indicator (Clean/Minimal) */
        .active-users-indicator {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-left: 15px;
            padding: 3px 10px;
            background: rgba(80, 250, 123, 0.1);
            border: 1px solid rgba(80, 250, 123, 0.3);
            border-radius: 12px;
            font-size: 11px;
            color: #50fa7b;
            cursor: default;
            transition: all 0.2s;
        }
        .active-users-indicator:hover {
            background: rgba(80, 250, 123, 0.2);
        }
        .active-users-indicator .active-dot {
            font-size: 6px;
            animation: pulse 2s infinite;
        }
        .active-users-indicator .fa-user {
            font-size: 10px;
            opacity: 0.8;
        }
        .users-avatars {
            display: inline-flex;
            margin-left: 4px;
        }
        .user-avatar {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            font-weight: bold;
            color: #282a36;
            margin-left: -6px;
            border: 2px solid #44475a;
            text-transform: uppercase;
        }
        .user-avatar:first-child {
            margin-left: 0;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        /* Cursor Markers */
        .other-cursor {
            position: absolute;
            width: 2px;
            height: 20px;
            pointer-events: none;
            z-index: 10;
            animation: blink 1s infinite;
        }
        .other-cursor::before {
            content: attr(data-username);
            position: absolute;
            top: -20px;
            left: 2px;
            background: inherit;
            color: #282a36;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: bold;
            white-space: nowrap;
        }
        @keyframes blink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0.3; }
        }

        /* Settings Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        .modal-overlay.active {
            display: flex;
        }
        .modal-content {
            background: #282a36;
            border: 2px solid #6272a4;
            border-radius: 8px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        }
        .modal-header {
            color: #ff79c6;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            border-bottom: 2px solid #6272a4;
            padding-bottom: 10px;
        }
        .modal-body {
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            color: #8be9fd;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .form-group input[type="password"],
        .form-group input[type="text"] {
            width: 100%;
            background: #44475a;
            border: 1px solid #6272a4;
            color: #f8f8f2;
            padding: 8px 12px;
            border-radius: 4px;
            font-family: 'Fira Code', monospace;
        }
        .form-group input:focus {
            outline: none;
            border-color: #bd93f9;
        }
        .toggle-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .toggle-switch {
            position: relative;
            width: 50px;
            height: 24px;
        }
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #6272a4;
            transition: 0.4s;
            border-radius: 24px;
        }
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: #f8f8f2;
            transition: 0.4s;
            border-radius: 50%;
        }
        input:checked + .toggle-slider {
            background-color: #50fa7b;
        }
        input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }
        .modal-footer {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }
        .btn-modal {
            padding: 8px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.2s;
        }
        .btn-save {
            background: #50fa7b;
            color: #282a36;
        }
        .btn-save:hover {
            background: #5af78e;
        }
        .btn-cancel {
            background: #6272a4;
            color: #f8f8f2;
        }
        .btn-cancel:hover {
            background: #7289b5;
        }

        /* Update existing styles to match Dracula theme */
        .search-bar {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .search-bar input {
            flex: 1;
            background: #44475a;
            border: 1px solid #6272a4;
            color: #f8f8f2;
            border-radius: 6px;
            padding: 10px;
            font-family: 'Fira Code', monospace;
        }
        .search-bar button {
            background: #8be9fd;
            color: #282a36;
            border: none;
            padding: 8px 15px;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: bold;
        }
        .search-bar button:hover {
            background: #9ff1ff;
        }
        .action-buttons {
            display: flex;
            gap: 8px;
            margin-left: 10px;
        }
        .action-buttons button {
            background: #44475a;
            color: #f8f8f2;
            border: 1px solid #6272a4;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.2s;
        }
        .action-buttons button:hover {
            background: #6272a4;
            transform: translateY(-1px);
        }
        .btn-clear:hover {
            background: #ff5555 !important;
            border-color: #ff5555;
        }
        .btn-copy:hover {
            background: #50fa7b !important;
            border-color: #50fa7b;
            color: #282a36;
        }
        .btn-download:hover {
            background: #8be9fd !important;
            border-color: #8be9fd;
            color: #282a36;
        }
        .editor-wrap {
            height: 80vh;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #6272a4;
            position: relative;
        }
        #editor {
            width: 100%;
            height: 100%;
        }
        .link-list {
            margin-top: 20px;
            padding: 15px;
            background: #44475a;
            border-radius: 8px;
            max-height: 200px;
            overflow-y: auto;
        }
        .link-list h6 {
            color: #8be9fd;
            margin-bottom: 10px;
            border-bottom: 1px solid #6272a4;
            padding-bottom: 5px;
        }
        .link-list a {
            display: block;
            color: #8be9fd;
            text-decoration: none;
            margin-bottom: 8px;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.2s;
            word-break: break-all;
        }
        .link-list a:hover {
            background: #6272a4;
            text-decoration: underline;
        }
        .link-item {
            display: flex;
            justify-content: between;
            align-items: center;
            gap: 10px;
        }
        .link-url {
            flex: 1;
        }
        .link-actions {
            display: flex;
            gap: 5px;
        }
        .link-actions button {
            background: transparent;
            border: none;
            color: #bd93f9;
            cursor: pointer;
            padding: 2px 6px;
            border-radius: 3px;
        }
        .link-actions button:hover {
            background: #6272a4;
            color: #f8f8f2;
        }
        .status-bar {
            margin-top: 10px;
            padding: 5px 10px;
            background: #44475a;
            border-radius: 4px;
            font-size: 12px;
        }
        .mode-selector {
            margin-left: 10px;
            background: #44475a;
            border: 1px solid #6272a4;
            color: #f8f8f2;
            border-radius: 4px;
            padding: 2px 8px;
            font-size: 11px;
        }
        .search-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .ace_content .ace_url {
            color: #8be9fd !important;
            text-decoration: underline;
            cursor: pointer;
        }
        .ace_content .ace_url:hover {
            background: rgba(139, 233, 253, 0.1);
        }
        h3.text-info {
            color: #ff79c6 !important;
        }
        .text-success {
            color: #50fa7b !important;
        }
        .text-warning {
            color: #f1fa8c !important;
        }
        .text-danger {
            color: #ff5555 !important;
        }
