* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Rubik', sans-serif;
        }

        :root {
            --primary: #222222;
            --primary-dark: #000000;
            --secondary: #444444;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --user-bg: #f2f2f2;
            --ai-bg: #ffffff;
            --border: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
            --popup-bg: rgba(255, 255, 255, 0.95);
            --error-bg: #fee;
            --error-color: #c33;
            --code-bg: #f8f9fa;
            --code-border: #e9ecef;
        }

        body {
            background: #f5f5f5;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
            overflow: hidden;
        }

        .chat-container {
            width: 100%;
            height: 100vh;
            height: 100dvh; /* Dynamic viewport height */
            max-width: 1200px;
            background: white;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }

        .chat-header {
            background: #ffffff;
            color: var(--dark);
            padding: 15px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border);
        }

        .chat-header-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .chat-header img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        .chat-title h2 {
            font-weight: 500;
            font-size: 1.2rem;
            margin-bottom: 2px;
        }

        .chat-title p {
            font-size: 0.85rem;
            color: var(--gray);
        }

        .header-action-button {
            background: var(--light-gray);
            border: 1px solid var(--border);
            color: var(--dark);
            font-size: 1rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .header-action-button:hover {
            background: var(--border);
        }

        .chat-messages {
            flex: 1;
            padding: 25px;
            overflow-y: auto;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            gap: 20px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="white"/><path d="M0 0L20 20M20 0L0 20" stroke="%23f0f0f0" stroke-width="0.5"/></svg>');
            background-size: 20px 20px;
        }

        .message {
            max-width: 80%;
            padding: 15px 20px;
            border-radius: 18px;
            position: relative;
            animation: fadeIn 0.3s ease;
            line-height: 1.6;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .user-message {
            align-self: flex-end;
            background: var(--user-bg);
            color: var(--dark);
            border-bottom-right-radius: 5px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
        }

        .ai-message {
            align-self: flex-start;
            background: linear-gradient(145deg, #ffffff, #f7f7f7);
            color: var(--dark);
            padding: 15px 20px;
            max-width: 90%;
            border: 1px solid var(--border);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }

        .ai-message p {
            margin-bottom: 1em;
            line-height: 1.6;
        }

        .ai-message p:last-child {
            margin-bottom: 0;
        }

        /* Markdown Content Styling */
        .ai-message ul, .ai-message ol {
            padding-left: 2em;
            margin: 1em 0;
        }

        .ai-message li {
            margin-bottom: 0.5em;
        }

        .ai-message blockquote {
            margin: 1em 0;
            padding: 0.5em 1.5em;
            border-left: 4px solid var(--border);
            background: rgba(0,0,0,0.02);
            color: var(--gray);
        }

        .ai-message h1, .ai-message h2, .ai-message h3, .ai-message h4, .ai-message h5, .ai-message h6 {
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            font-weight: 600;
        }

        .ai-message a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        .ai-message a:hover {
            text-decoration: underline;
        }

.generated-image {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.prompt-text {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 10px;
    font-style: italic;
}

.paid-notice {
    font-size: 0.7rem;
    color: var(--error-color);
    font-weight: 500;
}

.thinking-indicator {
    align-self: center;
    padding: 10px 20px;
    background: #f1f3f4;
    color: #333;
    font-style: italic;
    border-radius: 15px;
    margin-bottom: 20px;
    display: none;
}

        /* New Code Block Styling */
        .code-block-container {
            border-radius: 12px;
            overflow-x: auto;
            margin: 1em 0;
            background-color: #f7f7f7;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0e0e0;
        }

        .code-block-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #e9ecef;
            padding: 10px 15px;
            border-bottom: 1px solid #d6d6d6;
        }

        .language-name {
            font-family: 'Rubik', sans-serif;
            font-size: 0.9rem;
            color: #555;
            text-transform: capitalize;
            font-weight: 500;
        }

        .copy-code-button {
            background: #d6d6d6;
            color: #333;
            border: 1px solid #c0c0c0;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease-in-out;
        }

        .copy-code-button:hover {
            background: #c0c0c0;
            border-color: #a0a0a0;
        }

        .copy-code-button:active {
            transform: scale(0.95);
        }

        .copy-code-button.copied {
            background: #6a9955;
            color: white;
        }

        .copy-code-button .fas,
        .copy-code-button .far {
            font-size: 1rem;
        }

        .ai-message pre {
            margin: 0 !important;
            border-radius: 0 0 8px 8px !important;
            border: none !important;
            padding: 1.5em;
        }

        .ai-message pre code.hljs {
            padding: 0 !important;
            font-family: 'Fira Code', 'JetBrains Mono', 'Consolas', 'Menlo', monospace;
            font-size: 0.95rem !important;
            line-height: 1.6 !important;
        }

        /* Scrollbar for code blocks */
        .ai-message pre code.hljs::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        .ai-message pre code.hljs::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .ai-message pre code.hljs::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 4px;
        }

        .ai-message pre code.hljs::-webkit-scrollbar-thumb:hover {
            background: #a1a1a1;
        }

        .error-message {
            background: var(--error-bg);
            color: var(--error-color);
            border: 1px solid var(--error-color);
        }

        .typing-indicator {
            align-self: flex-start;
            padding: 15px 20px;
            display: inline-flex;
            gap: 5px;
            background: var(--ai-bg);
            border-radius: 18px;
            border: 1px solid var(--border);
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            background: var(--gray);
            border-radius: 50%;
            animation: typing 1.4s infinite ease-in-out;
        }

        .typing-dot:nth-child(1) { animation-delay: 0s; }
        .typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typing {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-5px); }
        }

        .chat-input-container {
            padding: 20px;
            background: white;
            border-top: 1px solid var(--border);
            display: flex;
            gap: 15px;
        }

        .input-area {
            display: flex;
            gap: 15px;
            flex: 1;
        }

        .chat-input {
            flex: 1;
            padding: 16px 22px;
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
            background: var(--light-gray);
        }

        .chat-input:focus {
            border-color: var(--primary);
            background: #ffffff;
            box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
        }

        .mode-button {
            background: var(--light-gray);
            color: var(--gray);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .mode-button:hover {
            background: var(--primary);
            color: white;
            transform: rotate(45deg);
        }

        .send-button {
            background: var(--light-gray);
            color: var(--gray);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .send-button.active {
            background: var(--primary);
            color: white;
        }

        .send-button:hover {
            background: var(--primary);
            color: white;
        }

        .send-button:active {
            transform: scale(0.95);
        }

        .send-button:disabled {
            background: var(--light-gray);
            color: #ccc;
            cursor: not-allowed;
        }

        .stop-button {
            background: var(--error-color);
            color: white;
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .stop-button:hover {
            background: #a00;
        }

        /* Popup Menu */
        .popup-menu {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 15px;
            width: 90%;
            max-width: 400px;
            z-index: 100;
            display: none;
            border: 1px solid var(--border);
            max-height: 80vh;
            overflow-y: auto;
        }


        .popup-menu.show {
            display: block;
            animation: slideUp 0.3s ease forwards;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translate(-50%, 20px); }
            to { opacity: 1; transform: translate(-50%, 0); }
        }

        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }

        .popup-header h3 {
            color: var(--dark);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .search-bar-container {
            position: relative;
            margin-bottom: 15px;
        }

        .search-bar-container i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }

        #modelSearchInput {
            width: 100%;
            padding: 12px 18px 12px 40px;
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
            background: var(--light-gray);
        }

        #modelSearchInput:focus {
            border-color: var(--primary);
            background: #ffffff;
            box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
        }

        .close-popup {
            background: none;
            border: none;
            font-size: 1.1rem;
            color: var(--gray);
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .close-popup:hover {
            background: var(--light-gray);
            color: var(--dark);
        }

        .mode-options, .model-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .model-options {
            grid-template-columns: 1fr;
        }

        .mode-option, .model-option {
            padding: 12px 15px;
            border-radius: 8px;
            background: transparent;
            border: 1px solid transparent;
            text-align: left;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mode-option:hover, .model-option:hover {
            background: var(--light-gray);
        }

        .mode-option i, .model-option i {
            font-size: 1.2rem;
            color: var(--dark);
            width: 20px;
            text-align: center;
        }

        .mode-option.active, .model-option.active {
            background: var(--light-gray);
            border-color: var(--primary);
        }

        .mode-option.active, .model-option.active {
            font-weight: 500;
        }

        .option-text h4 {
            font-size: 1rem;
            margin: 0;
            color: var(--dark);
            font-weight: 500;
        }

        .option-text p {
            font-size: 0.8rem;
            color: var(--gray);
            margin: 0;
        }

        /* Overlay */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: none;
            z-index: 99;
        }

        .overlay.show {
            display: block;
        }

        /* Mode indicator */
        .mode-indicator {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-left: 8px;
            background: rgba(34, 34, 34, 0.05);
            color: var(--primary);
        }

        /* API Key Setup */
        .api-setup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .api-setup-content {
            background: white;
            padding: 25px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
        }

        .api-setup-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
            text-align: center;
        }

        .api-key-input-container input {
            flex-grow: 1;
            padding: 12px 18px;
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
            background: var(--light-gray);
        }

        .api-key-input-container input:focus {
            border-color: var(--primary);
            background: #ffffff;
            box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
        }

        .api-key-input-container {
            position: relative;
            display: flex;
            align-items: center;
            margin: 15px 0;
        }

        .api-key-input-container input {
            padding-right: 45px !important;
        }

        .toggle-api-visibility {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--gray);
            cursor: pointer;
            font-size: 1rem;
            padding: 5px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .toggle-api-visibility:hover {
            background: var(--light-gray);
        }

        #copyApiKey {
            background: var(--secondary);
        }

        #copyApiKey:hover {
            background: var(--dark);
        }

        .api-setup-actions {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            margin-top: 15px;
        }

        .api-setup-actions button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .api-setup-actions button:hover {
            background: var(--primary-dark);
        }

        .api-setup-actions .remove-button {
            background: var(--error-color) !important;
        }

        .api-setup-actions .remove-button:hover {
            background: #a00 !important;
        }

        .remove-button {
            background: #c33 !important;
        }

        .remove-button:hover {
            background: #a00 !important;
        }

        .manage-api-button, .refresh-models-button {
            background: var(--light-gray);
            border: 1px solid var(--border);
            width: 100%;
            padding: 12px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
            flex-grow: 1;
            text-align: center;
        }

        .manage-api-button:hover, .refresh-models-button:hover {
            background: var(--border);
        }

        .popup-footer {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .refresh-models-button i {
            margin-right: 5px;
        }

        .api-popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }

        .api-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .api-tab-button {
            flex-grow: 1;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: transparent;
            cursor: pointer;
            font-weight: 500;
        }

        .api-tab-button.active {
            background: var(--light-gray);
            border-color: var(--primary);
        }

        .api-tab-content {
            display: none;
            animation: fadeIn 0.3s;
        }

        .api-tab-content.active {
            display: block;
        }

        .api-tab-content h4 {
            margin-bottom: 5px;
        }

        .api-tab-content p {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .api-link {
            font-size: 0.8rem !important;
            margin-top: 10px;
        }

        .api-storage-notice {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }

        .api-setup p {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 15px;
        }

        .api-setup a {
            color: var(--primary);
            text-decoration: none;
        }

        /* Welcome message styling */
        .welcome-message {
            text-align: center;
            padding: 20px;
            background: rgba(34, 34, 34, 0.03);
            border-radius: 15px;
            margin-bottom: 20px;
            align-self: center;
            max-width: 80%;
            border: 1px solid var(--border);
        }

        .welcome-message h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .welcome-message p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .chat-container {
                border-radius: 20px;
                height: 90vh;
                height: 90dvh;
            }

            body {
                padding: 20px;
            }
        }

        @media (max-width: 767px) {
            .chat-header-info h2 {
                font-size: 1.2rem;
            }
            .chat-header-info p {
                font-size: 0.85rem;
            }
            .message {
                max-width: 90%;
                font-size: 0.95rem;
            }
            .chat-input-container {
                padding: 10px;
            }
            .chat-input {
                padding: 12px 18px;
            }
            .mode-button, .send-button, .stop-button {
                width: 50px;
                height: 50px;
            }
            .popup-menu {
                bottom: 75px;
                width: calc(100% - 20px);
            }
        }

        @media (max-width: 480px) {
            .chat-header {
                padding: 12px 15px;
            }
            .chat-header-info h2 {
                font-size: 1.1rem;
            }
            .message {
                max-width: 95%;
                padding: 10px 14px;
                font-size: 0.9rem;
            }
            .chat-input-container {
                padding: 8px;
                gap: 8px;
            }
            .input-area {
                gap: 8px;
            }
            .mode-button, .send-button, .stop-button {
                width: 45px;
                height: 45px;
            }
            .popup-menu {
                bottom: 70px;
            }
            .mode-options {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 360px) {
            .chat-header-info h2 {
                font-size: 1rem;
            }
            .chat-header-info p {
                font-size: 0.75rem;
            }
            .chat-header img {
                width: 35px;
                height: 35px;
            }
            .chat-input {
                font-size: 0.85rem;
            }
        }

        /* Scrollbar styling */
        .chat-messages::-webkit-scrollbar {
            width: 8px;
        }

        .chat-messages::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .chat-messages::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }

        .chat-messages::-webkit-scrollbar-thumb:hover {
            background: #a1a1a1;
        }

        /* Splash Screen */
        #splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--light);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            transition: opacity 0.5s ease-out;
        }

        #splash-screen img {
            max-width: 150px;
            animation: zoomIn 1s ease-out forwards;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        #splash-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

/* Toggle Switch */
.api-key-toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.toggle-label {
    font-size: 0.9rem;
    color: var(--dark);
}

/* Search Results */
.search-results-container {
    background-color: #f7f7f7;
    border-radius: 12px;
    padding: 10px 15px;
    margin-top: 10px;
    border: 1px solid var(--border);
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.search-results-header h4 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0;
}

.collapse-button {
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.collapse-button:hover {
    background: var(--light-gray);
    color: var(--dark);
}

.search-results-list {
    margin-top: 10px;
    display: block;
}

.search-result-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    margin-bottom: 10px;
}

.search-result-item:last-child {
    margin-bottom: 0;
}

.search-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.search-result-title a {
    font-size: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-title a:hover {
    color: #000;
}

.search-result-url {
    font-size: 0.85rem;
    color: #006621;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-snippet {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
