#title {
    margin-top: 12px;
    background-color: #fff;
    color: #000;

}
#menu {
    border-top: solid 6px #f00;
    background-color: #f00;
    color: #fff;
    /*height: 400px;*/
}

#menu a {
    background-color: #f00;
    color: #fff;
    text-decoration: none;
    display: block;
}
#menu a:hover {
    background-color: #f00;
    color: #ddd;
    text-decoration:underline;
    display: block;
}

#content {
    background-color: #fff;
    border-top: solid 6px #f00;
    margin-left: 80px;
    padding: 20px;

}



.container {
    width: calc(100% - 1px);
    padding: 20px 20px 20px 37px;
    transition: left 0.3s ease;
}


#footer {
    margin-top: 20px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #2c2c2c;
}
::-webkit-scrollbar-thumb {
    background: #D7BC91;
    border-radius: 4px;
}

.btn {
    background: #3e3e3e;
    border: none;
    color: white;
    transition: background 0.3s;
}

.btn:hover {
    background: #D7BC91;
}



/*
 Particle class
*/

#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure it stays behind all other content */
    overflow: hidden;
    background-color: #121212;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #D7BC91;
    border-radius: 50%;
    animation: moveParticle 5s linear infinite;
}

@keyframes moveParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
    100% {
        transform: translateY(100vh) translateX(calc(60vw - 50px));
        opacity: 0;
    }
}

/*
    Nav Bar Style
*/



#particle-container.dark-mode {
    background-color: #070707;
}

#particle-container.light-mode {
    background-color: #f5f5f5;
}

body{
    color: #f5f5f5;
    font-family: Arial, sans-serif;
    background-color: #121212;
}

body.dark-mode {
    color: #f5f5f5;
}

body.light-mode {
    color: #121212;
}



nav.navbar.light-mode {
    background-color: #f5f5f5;
    color: #070707;
}

nav.navbar.dark-mode {
    background-color: #161616;
    color: #D7BC91;
}

nav.navbar .nav-link,
nav.navbar .navbar-brand {
    color: inherit !important;
}

nav.navbar .nav-link:hover {
    color: #f5f5f5 !important;
}

nav.navbar .form-inline .form-control {
    background-color: #2c2c2c;
    color: #f5f5f5;
    border: 1px solid #D7BC91;
    border-radius: 12px;
    transition: border-color 0.3s;
}

    nav.navbar.navbar-brand {
        color: inherit !important;
    }

    button#theme-toggle {
        background-color: transparent; /* Remove background color */
        border: none; /* Optional: Remove border if present */
        color: inherit; /* Inherit text color from parent */
        font-size: 13px; /* Adjust font size if needed */
        cursor: pointer; /* Make it clear the button is clickable */
    >>> >>> > d1b2d4c3b76c2af900d41f3127890906b1106e3e
    }

    button#theme-toggle:hover {
        text-decoration: underline; /* Optional: Add hover effect */
        color: #f1f1f1;
    }

    .theme-toggle-container {
        display: flex;
        justify-content: flex-end;
        padding: 10px;
    }

    .theme-toggle-btn {
        background: none;
        border: none;
        color: #f5f5f5; /* Default for dark mode */
        font-size: 24px;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .theme-toggle-btn:focus {
        outline: none;
    }

    .theme-toggle-btn.light {
        color: #121212; /* Default for light mode */
    }

    /* SideNav Bar  */

    .sidebar {
        width: 110px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        overflow-x: hidden;
        border-radius: 12px;
        padding-top: 100px;
        padding-right: 10px;
        padding-left: 3px;
        transition: width 0.3s ease; /* smooth transition for mobile size devices */
    }

    .sidebar a {
        padding: 6px 8px 6px 8px;
        text-decoration: none;
        font-size: 13px;
        color: #818181;
        display: flex;
        align-items: center;
        white-space: nowrap; /*prevent text from wrapping */
        transition: background 0.3s, transform 0.6s, color 0.8s;
        position: relative;
    }

    .sidebar a i {
        margin-right: 5px;
    }


    .sidebar a:hover {
        color: #f1f1f1;
        transform: scale(1.1);
    }

    @media screen and (max-width: 1100px) {
        .sidebar {
            width: 100px;
        }

        .sidebar a {
            font-size: 13px;
        }

    }

    @media screen and (max-width: 1000px) {
        .sidebar {
            width: 90px;
        }

        .sidebar a {
            font-size: 12px;
        }
    }

    @media screen and (max-width: 900px) {
        .sidebar {
            width: 90px;


        }

        .sidebar a {
            font-size: 12px;
        }

    }

    @media screen and (max-width: 800px) {
        .sidebar {
            width: 80px;


        }

        .sidebar a {
            font-size: 11px;

        }

    }

    @media screen and (max-width: 700px) {
        .sidebar {
            width: 70px;


        }

        .sidebar a {
            font-size: 9px;

        }

    }

    @media screen and (max-width: 600px) {
        .sidebar {
            width: 60px;

        }

        .sidebar a span {
            display: none;

        }

        .sidebar a {
            font-size: 12px; /* adjust icon size */
        }
    }

    @media screen and (max-width: 300px) {
        .sidebar {
            width: 40px;

        }

        .sidebar a span {
            display: none;

        }

        .sidebar a {
            font-size: 8px;
        }
    }

    .sidebar a i {
        margin-right: 5px; /*remove space between icon and text */
    }

    /* D3.js */

    .node {
        stroke: #000;
        stroke-width: 1.5px;
    }

    .link {
        fill: none;
        stroke: #999;
        stroke-opacity: 0.6;
        stroke-width: 1.5px;
    }

