body {
    background-color: #300a24;
    color: #ffffff;
    font-family: 'Ubuntu Mono', monospace;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;    
}
.hidden {
display: none;
}
.terminal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;    
}

.command-nav {
    background-color: #300a24;
    display: flex;
    align-items: center;
    padding: 10px;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 20px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    width: 80px;
}

.nav-logo-image {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.nav-logo-label {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    margin-top: 5px;
    max-width: 80px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    white-space: normal;
    line-height: 1.2;
}

.nav-prompt {
    color: #4e9a06;
    margin-right: 10px;
}

.nav-btn {
    background-color: transparent;
    color: #ffffff;
    border: none;
    font-family: 'Ubuntu Mono', monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    margin-right: 10px;
    transition: background-color 0.3s;
}
.nav-logo {
    font-family: 'Ubuntu Mono', monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;    
    color: #4e9a06;
}
.nav-logo:hover  {
    cursor: pointer;
}
.nav-btn:hover {
    color: #4e9a06;
}

.nav-btn:before {
    content: ':';
    color: #4e9a06;
    margin-right: 5px;
}

.ubuntu-window {
    background-color: #300a24;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 240px);
    min-height: 500px;
}

.ubuntu-titlebar {
    background-color: #3c3b37;
    padding: 8px 15px;
    display: flex;
    align-items: center;
}

.ubuntu-buttons {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.ubuntu-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.command-input {
    background: transparent; border: none; color: white; outline: none; width: 60%;
}

.ubuntu-close { background-color: #ff5f57; }
.ubuntu-minimize { background-color: #febc2e; }
.ubuntu-maximize { background-color: #28c940; }

.ubuntu-title {
    flex-grow: 1;
    text-align: center;
    font-size: 14px;
}

.ubuntu-content {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    scroll-behavior: smooth;
    font-size: 16px;
}

.command {
    margin-bottom: 10px;
    color: #4e9a06;
}

.output {
    margin-bottom: 20px;
    white-space: pre-wrap;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background-color: #ffffff;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    50% { opacity: 0; }
}

.blue { color: #3465a4; }
.green { color: #4e9a06; }
.yellow { color: #c4a000; }
.red { color: #cc0000; }
.strong-text { font-weight: bold; }

.social-icons {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
}

.social-icons a {
    color: #ffffff;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
}

.disclaimer {
    font-size: 16px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #FFFFFF;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .terminal-container {
        padding: 10px;
    }

    .command-nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px 10px;
    }

    .nav-logo {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }

    .nav-logo-image {
        width: 64px;
        height: 64px;
    }

    .nav-logo-label {
        font-size: 14px;
        max-width: 64px;
    }

    .nav-prompt {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .nav-btn {
        font-size: 20px;
        padding: 3px 6px;
    }

    .ubuntu-window {
        height: calc(100vh - 280px);
        min-height: 500px;
    }

    .ubuntu-content {
        font-size: 16px;
    }
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 5px;
}

.section-title {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}