     body {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden; /* Prevents horizontal scrollbar */
        }

        body {
            background-image: url("/window.jpg"); /* Replace with your image path */
            background-repeat: no-repeat;
            background-size: cover;
            background-attachment: fixed;
            background-position: center center;

            /* Global text styling */
            color: white;
            font-family: monospace, sans-serif;
            font-size: 13px;

            display: flex; /* Make body a flex container */
            flex-direction: column; /* Stack items vertically */
            /* We remove justify-content and align-items here, as we'll use auto margins for centering */
        }

        .header-text {
            text-align: center;
            padding: 20px;
            font-size: 13px;
            flex-shrink: 0; /* Prevents it from shrinking */
            }
        
        /* Target the anchor tags directly within .header-text */
        .header-text a {
            color: white; /* This will make the link text white */
            text-decoration: none; /* This will remove the underline */
        }
        
        /* OPTIONAL: Add hover, active, and visited states for better user experience */
        .header-text a:hover {
            color: lightgray; /* A slightly different color on hover */
            text-decoration: underline; /* Add underline back on hover for feedback */
        }
        
        .header-text a:visited {
            color: white; /* Keep visited links white as well */
        }
        
        .header-text a:active {
            color: #ccc; /* Color when the link is being clicked */
        }
        
         /* Main container for the fixed layout */
        .main-layout-container {
            width: 900px;
            height: 530px;
            margin: 0 auto;
            background-color: transparent; /* No background on this container itself */
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.5); /* Re-added subtle border to the main container */
            align-items: center
                        
        }
        
        /* Left Navbar/Sidebar */
        .navbar {
            flex: 0 0 200px; /* Fixed width for the navbar */
            background-color: rgba(0, 0, 0, 0.8);
            padding: 20px 15px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center; /* You set this to center, keeping it */
        }

        .navbar-brand {
            font-size: 1.5em;
            font-weight: bold;
            color: white;
            text-decoration: none;
            margin-bottom: 20px;
            display: block;
        }

        .navbar-links {
            list-style: none;
            margin: 0;
            padding: 0;
            width: 100%;
            text-align: center; /* If align-items: center in navbar doesn't center link text, this will */
        }

        .navbar-links li {
            margin-bottom: 8px;
            /* OPTIONAL: Add hover, active, and visited states for better user experience */
        }
        .navbar-links li a:hover {
            color: lightgray; /* A slightly different color on hover */
            text-decoration: underline; /* Add underline back on hover for feedback */
        }

        .navbar-links a {
            color: #FFFFFF;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.2s ease;
            display: block;
            padding: 3px 0;
        }

        .navbar-links a:hover {
            color: #ececec;
        }

        .navbar-links .has-sub-menu {
            position: relative;
            padding-left: 15px;
        }

        .navbar-links .has-sub-menu::before {
            content: '\25B6';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #add8e6;
            font-size: 0.8em;
        }

        /* Right Content Area */
        .content-area {
            flex: 1;
            background-color: rgba(0, 0, 0, 0.6); /* Slightly lighter transparent black */
            padding: 20px;
            box-sizing: border-box;
            overflow-y: auto;
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        .content-area h4 { /* Changed from h2 to h4 as per your CSS snippet */
            color: #add8e6;
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.6em;
            text-align: center;
        }

        .content-area p {
            color: white;
            line-height: 1.5;
            margin-bottom: 15px; /* Increased from 10px in previous version */
        }

 
        /* Basic paragraph for the "chainlink" text */
        .chainlink-info {
            font-size: 0.9em;
            text-align: left;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px dotted rgba(255, 255, 255, 0.3);
        }

        .footer-text {
        text-align: center;
        padding: 20px;
        color: white; /* This sets the default text color for the footer, but 'a' tags have their own default */
        font-size: 13px;
        flex-shrink: 0;
        /* text-decoration: none; <-- This line is redundant here for hyperlinks, move it to 'a' */
        }
        
        /* Target the anchor tags directly within .footer-text */
        .footer-text a {
            color: white; /* This will make the link text white */
            text-decoration: none; /* This will remove the underline */
        }
        
        /* OPTIONAL: Add hover, active, and visited states for better user experience */
        .footer-text a:hover {
            color: lightgray; /* A slightly different color on hover */
            text-decoration: underline; /* Add underline back on hover for feedback */
        }
        
        .footer-text a:visited {
            color: white; /* Keep visited links white as well */
        }
        
        .footer-text a:active {
            color: #ccc; /* Color when the link is being clicked */
        }
                
            
            
            