/* ========================
   Global Styles and Variables
========================= */
:root {
    --main-blue: #002a6c;
    --hover-blue: #001f4d;
    --terminal-bg: #21232C;
    --white: #ffffff;
    --light-gray: #9c9c9c;
    --cyan: #66C2CD;
    --success: #5AD786;
    --error: #F78F85;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /*background-color: var(--terminal-bg);*/
    /*color: var(--white);*/
}

/* ========================
   Navbar Styling
========================= */
.navbar {
    background-color: var(--main-blue) !important;
}

    .navbar .nav-link,
    .navbar .navbar-brand {
        color: var(--white) !important;
    }

/* ========================
   Text Styling
========================= */
h1, .page-title {
    color: var(--main-blue);
}

.custom-link {
    color: var(--main-blue);
    text-decoration: none;
}

    .custom-link:hover {
        color: var(--hover-blue);
        text-decoration: underline;
    }

/* ========================
   Terminal Container
========================= */
.terminal-container {
    font-family: 'Fira Code', monospace;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    height: 500px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid gray;
    margin: 20px auto;
    align-items: center;
    justify-content: center;
}

/* ========================
   Terminal Menu
========================= */
.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 24px;
    background-color: var(--terminal-bg);
    padding: 0 8px;
    cursor: default;
}

    .menu .button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin-right: 8px;
        cursor: pointer;
    }

    .menu .icon {
        width: 15px;
        height: 15px;
        cursor: pointer;
    }

    .menu .terminal-icon {
        background-image: url("../images/terminal-icon.png");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .menu .exit {
        background-color: #2269E2;
    }

    .menu .maximize,
    .menu .minimize {
        background-color: #313541;
        border: 1px solid var(--white);
    }

    .menu h1 {
        font-size: 13px;
        color: var(--light-gray);
    }

.buttons-flex,
.icon-flex {
    display: flex;
    flex-direction: row;
    position: absolute;
    right: 0;
}

/* ========================
   Terminal Text Output
========================= */
.path, section.path-history {
    color: var(--white);
    line-height: 1.2;
}

    .path span, .path-history span {
        color: #2579F2;
    }

        .path span.white, .path-history span.white {
            color: var(--white);
        }

p.terminal, p.response {
    font-size: 16px;
    padding: 8px 0;
    color: var(--white);
}

p.code {
    color: var(--cyan);
    margin-left: 8px;
}

h1.terminal-title, h1.terminal {
    font-size: 13px;
    color: var(--light-gray);
}

h2.terminal {
    font-size: 16px;
    display: inline;
}

h2.success {
    color: var(--success);
}

h2.error {
    color: var(--error);
}

a.menu {
    text-decoration: none;
    color: var(--white);
}

/* ========================
   Input Styling
========================= */
input {
    border: none;
    background-color: transparent;
    color: var(--white);
    width: 80%;
    font-size: 16px;
    font-family: 'Fira Code', monospace;
}

    input:focus {
        outline: none;
        box-shadow: none;
    }
