body {
    cursor: crosshair; /* Apply crosshair cursor to the entire body */
    font-family: VCR OSD Mono, Consolas;
    margin: 0;
    padding: 0;
    background-color: #262626;
    overflow-x: hidden;
}

p {
    font-family: consolas, sans-serif;
}

#progressBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background-color: #f6d896;
    z-index: 100;
}

.container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.sidebar {
    background-color: #333;
    color: #fff;
    width: 250px;
    padding: 1em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar .profile {
    text-align: center;
}

.sidebar img {
    width: 175px;
    height: 150px;
    object-fit: contain;
}

.sidebar h2 {
    margin-top: 0.5em;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin-top: 2em;
    width: 100%;
    text-align: center;
}

.sidebar nav ul li {
    margin: 1em 0;
}

.sidebar nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}

.content {
    flex-grow: 1;
    padding: 2em;
    overflow-y: auto;
    background-color: ##262626;
    color: #f0f0f0; /* Light text color */
    z-index: 1;
}

section {
    margin-bottom: 2em;
}

section h2 {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        padding: 0.5em 0;
    }

    .sidebar nav ul {
        display: flex;
        justify-content: space-around;
        margin-top: 0;
    }

    .sidebar nav ul li {
        margin: 0;
    }

    .content {
        padding: 1em;
    }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #262626; /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #f6d896; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Roundness of the scrollbar thumb */
    border: 3px solid #d9d9d9; /* Padding around the scrollbar thumb */
}

/* Optional: Style the scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker color on hover */

/* Firefox Scrollbar */
body {
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: #333 #d9d9d9; /* Color of the scrollbar thumb and track */
}

/* Crosshair cursor */
.crosshair-cursor {
    cursor: crosshair;
}

/* Grainy Circle */
.grainy-circle {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: #555;
    border-radius: 50%;
    filter: url(#grainy-filter);
    z-index: 0;
}

/* Blurry Circle */
.blurry-circle {
    position: absolute;
    top: 70%;
    left: 70%;
    width: 200px;
    height: 200px;
    background: #888;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 0;
}

#my-divider {
    margin-bottom: 200px; /* Adds space below the divider */
}

a:link {
  color: #f6d896;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #e67300;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}