/* Terminal Hacker Theme */
body {
    background: #0f1117;
    color: #00ffb7;
    font-family: 'Courier New', monospace;
}

/* Sidebar */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100%;
    background: #0f1117;
    border-top: 2px solid #00ff00;
    border-right: 2px solid #00ff00;
    border-left: 2px solid #00ff00;
    padding-top: 1rem;
}
#sidebar h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #00ff00;
    font-weight: bold;
    animation: flicker 1.5s infinite alternate;
}
#sidebar .nav-link {
    color: #00ff00;
    margin: 0.5rem 0;
    display: block;
    padding: 0.5rem 1rem;
    border-left: 3px solid transparent;
    transition: 0.2s;
}
#sidebar .nav-link:hover {
    border-left: 3px solid #00ff00;
    background-color: #111;
    color: #00ff00;
}

/* Main Content */
#main-content {
    margin-left: 240px;
    padding: 2rem;
}

/* Cards */
.card {
    background-color: #0a0a0a;
    border: 2px solid #00ff00;
    color: #95ff00;
}
.card h5 {
    color: #00ffb7;
}
#navbar {
    top: 0;
    left: 0px;
    height: 100%;
    background: #0f1117;
    border: 2px solid #00ff00;
    padding-top: 1rem;

}
#navbar2 {
    top: 0;
    right: 0;
    height: 100%;
    background: #0a0a0a;
    border-right: 2px solid #00ff00;
    border-bottom: 2px solid #00ff00;
    padding-top: 1rem;
}
.admin-Title-Text {
    color: #00ffb7;
    font-size: 30px;
    text-align: center;
    font-weight: bold;

}
.admin-side-Title-Text {
     color: #00ffb7;
     font-size: 20px;
     text-align: center;
     font-weight: bold;

 }
.navbar-brand:hover {
    color: inherit !important;
    text-decoration: none !important;
}
/* Terminal Number Animation */
.terminal-title { animation: flicker 1.5s infinite alternate; }
.terminal-number { font-size: 2rem; animation: flicker 1.2s infinite alternate; }

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {opacity: 1;}
    20%, 22%, 24%, 55% {opacity: 0.4;}
}
#sidebar2 {
    position: fixed;
    top: 5px;
    left: 0;
    width: 220px;
    height: 10%;
    background: #0a0a0a;
    border-right: 2px solid #00ff00;
    padding-bottom: 1rem;
}
.topPadding {
    padding-top: 40px;
    padding-left: 90px;
}
.footer {
    background: #0f1117;
    color: #00ffb7;
    font-family: 'Courier New', monospace;
}