  @import url('https://fonts.googleapis.com/css2?family=Palanquin+Dark:wght@400;700&display=swap');
        body {
            cursor: cell;
            margin: 0;
            font-family: 'Palanquin Dark', sans-serif;
            background-color: #111;
            color: white;
            text-align:center;
        }
        .main-content {
            text-align: center;
            padding-bottom: 60px;
            background-color: #111;
        }
        .bottom-nav {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            background: black;
            padding: 10px;
            border-radius: 30px;
            gap: 20px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
        }
        .nav-item {
            position: relative;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
        }
        .nav-item:hover {
            background: #333;
        }
        .nav-item:hover .tooltip {
            opacity: 1;
            transform: translateY(-10px);
        }
        .tooltip {
            position: absolute;
            bottom: 60px;
            background: white;
            color: black;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            transition: all 0.3s;
        }
        
        a {
        color: white;
        }
        
        .chat-container {
            width: 100vw;
            max-width: 100%;
            background-color: #111;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            height: 80vh;
        }

        .chat-box {
            flex: 1;
            overflow-y: auto;
            padding: 15px;
            display: flex;
            flex-direction: column;
        }

        .message {
            display: flex;
            margin-bottom: 12px;
        }

        .message.user {
            justify-content: flex-end;
        }

        .message.ai {
            justify-content: flex-start;
        }

        .bubble {
            padding: 12px;
            border-radius: 8px;
            max-width: 75%;
            word-wrap: break-word;
            white-space: pre-wrap;
        }

        .user .bubble {
            background-color: white;
            color: black;
        }

        .ai .bubble {
            background-color: #222;
            color: white;
        }

        /* Code block styling */
        .bubble pre {
            background-color: #000;
            padding: 10px;
            border-radius: 5px;
            overflow-x: auto;
            font-family: monospace;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        /* Inline code */
        .bubble code {
            background-color: #333;
            padding: 2px 4px;
            border-radius: 3px;
            font-family: monospace;
        }

        /* Links */
        .bubble a {
            color: white;
            text-decoration: none;
            border-bottom: 1px solid white;
        }

        .bubble a:hover {
            text-decoration: underline;
        }

        .input-container {
            display: flex;
            padding: 15px;
            background-color: #222;
        }

        textarea {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            background-color: #111;
            color: white;
            outline: none;
            resize: none;
            height: 40px;
            min-height: 40px;
            max-height: 150px;
        }

        /* Auto-expand textarea */
        textarea:focus {
            height: auto;
        }

        /* Send button */
        button {
            margin-left: 10px;
            padding: 10px;
            border: none;
            background-color: white;
            color: black;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
        }

        button:hover {
            background-color: #ddd;
        }
iframe {
    display: inline;
    background: #000;
    border: none;
    height: calc(100vh - 7.5vh);
    width: calc(100vw);
}

.hidden {
display:none;

}

#version-status {
    font-size: 20px;
}

.up-to-date {
    color: green;
}

.minor-update {
    color: yellow;
}

.major-update {
    color: red;
}
