        /* Base Styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #1a1d24;
            color: #f1f1f1;
            line-height: 1.6;
        }

        .header-section {
            background-color: #2a2d36;
            padding: 20px;
            text-align: center;
        }

        .header-section h1 {
            color: #04E91A;
            margin: 10px 0;
        }

        .header-section p {
            color: #cccccc;
        }

        .main-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
        }

        /* Sidebar Styles */
        .sidebar {
            flex: 1 1 300px;
            background-color: #20232a;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            max-width: 100%;
        }

        .sidebar h3 {
            color: #04E91A;
            margin-bottom: 15px;
        }

        /* Search Bar Container */
        .search-bar {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        /* Search Input */
        #searchInput {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 4px;
            margin-right: 10px;
        }

        /* Optional Search Button */
        .search-bar button {
            padding: 10px;
            background-color: #04E91A;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .search-bar button:hover {
            background-color: #02c817;
        }

        /* Search Results Block */
        #searchResults {
            display: none;           /* hidden by default */
            margin-top: 10px;        /* spacing from the search bar */
            background-color: #33363f;
            border: 1px solid #33363f;
            border-radius: 4px;
            max-height: 250px;       /* optional max height */
            overflow-y: auto;        /* enable scrolling if too tall */
        }

        .search-result-item {
            padding: 10px;
            color: #f1f1f1;
            cursor: pointer;
            transition: background-color 0.2s;
            border-bottom: 1px solid #2a2e39;
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .search-result-item:hover {
            background-color: #04E91A;
            color: #000;
        }

        .sidebar .articles {
            list-style-type: none;
            padding: 0;
        }

        .sidebar .articles li {
            margin: 10px 0;
        }

        .sidebar .articles li a {
            text-decoration: none;
            color: #ffffff;
            transition: color 0.3s;
        }

        .sidebar .articles li a:hover {
            color: #04E91A;
        }

        /* Content Section Styles */
        .content {
            flex: 2 1 600px;
            background-color: #20232a;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            max-width: 100%;
        }

        h2 {
            color: #04E91A;
            margin-top: 0;
        }

        ol, ul {
            padding-left: 20px;
        }

        ol li, ul li {
            margin-bottom: 10px;
        }

        .important-note {
            background-color: #33363f;
            padding: 15px;
            border-left: 4px solid #04E91A;
            margin: 20px 0;
        }

        .tips-section ul {
            list-style-type: square;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
            .sidebar {
                flex: 1 1 100%;
                margin-bottom: 20px;
            }
            .content {
                flex: 1 1 100%;
            }
        }

        @media (max-width: 480px) {
            .header-section h1 {
                font-size: 1.5rem;
            }
            .header-section p {
                font-size: 1rem;
            }
            .sidebar h3 {
                font-size: 1.2rem;
            }
            #searchInput {
                padding: 8px;
            }
            .search-bar button {
                padding: 8px;
            }
        }