/* General styling */
	.modal{
	    top:5rem !important;
	}
        .hacking-bg {
            background-color: #101010;
            color: #ffffff;
        }

        .btn-neon {
            background: #1c1c1c;
            color: #00FF00;
            border: 1px solid #00FF00;
        }

        .btn-neon:hover {
            background: #00FF00
            color: #000;
        }

        /* Top Navbar */
        .navbar-custom {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1100;
            background-color: #1a1a1a;
            padding: 10px 20px;
            color: #00FF00
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .navbar-custom .menu-toggle {
            font-size: 1.5rem;
            color: #0fdfff;
            cursor: pointer;
        }

        /* Sidebar styling */
        .sidebar-container {
            position: fixed;
            top: 0;
            left: -100%; /* Hidden by default */
            width: 100%;
            height: 100vh;
            background-color: #1a1a1a;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 60px 20px 20px 20px; /* Top padding to avoid overlapping with navbar */
            z-index: 1050;
            transition: left 0.3s ease;
        }

        .sidebar-container.active {
            left: 0; /* Slide in */
        }

        .sidebar-container a {
            color: #9ca3af;
            padding: 10px 0;
            width: 100%;
            text-align: left;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        .sidebar-container a i {
            margin-right: 10px;
        }

        .sidebar-container a:hover {
            background-color: #333;
            color: #ffffff;
        }

        /* Overlay when sidebar is active */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1040;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        /* Main content area */
        .content-area {
            margin-top: 60px; /* Offset for the fixed navbar */
            padding: 20px;
        }

        /* Fixed Sidebar for larger screens */
        @@media (min-width: 768px) {
            /* Hide the mobile navbar */
            .navbar-custom {
                display: none;
            }

            /* Sidebar becomes fixed on the left */
            .sidebar-container {
                left: 0;
                width: 250px;
                height: 100vh;
                padding: 20px;
                transition: none;
            }

            .sidebar-container.active {
                left: 0;
            }

            /* Remove overlay on larger screens */
            .overlay {
                display: none !important;
            }

            /* Adjust content area to accommodate sidebar */
            .content-area {
                margin-left: 250px;
                margin-top: 0;
            }
        }