<style>

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #ffffff;
            padding: 12px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        nav ul {
            margin: 0;
            display: flex;
            gap: 24px;
            list-style: none;
        }
        
        nav a {
            text-decoration: none;
            color: #007bff;
            font-weight: 600;
            font-size: 16px;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }

        nav a:hover {
            background-color: #e7f1ff;
            color: #0056b3;
        }

        @media (max-width: 760px) {
            .nav-container {
                flex-direction: column;
                text-align: center;
                padding: 16px;
                gap: 12px;
        }

            nav ul {
                justify-content: center;
                flex-wrap: wrap;
                gap: 16px;
            }

        }
        
        /* Basic fallback styles to match a modern, clean design (light theme with blue accents).
           Adjust if your global CSS overrides these. */
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 20px;
            background-color: #f4f4f4;
        }
        header {
            text-align: center;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        nav a {
            text-decoration: none;
            color: #007bff;
            font-weight: 500;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        h1 {
            text-align: center;
            color: #007bff;
            margin-bottom: 30px;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        label {
            font-weight: 600;
            margin-bottom: 5px;
        }
        input[type="text"],
        textarea {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        input[type="text"]:focus,
        textarea:focus {
            outline: none;
            border-color: #007bff;
        }
        button {
            background-color: #007bff;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            align-self: flex-start;
        }
        button:hover {
            background-color: #0056b3;
        }
        footer {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #eee;
            color: #666;
            font-size: 14px;
        }

        /* Dark Theme Styles */
        body.dark-theme {
            background-color: #121212;
            color: #e0e0e0;
        }

        .dark-theme .nav-container {
            background-color: #1e1e1e;
            border: 1px solid #333;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .dark-theme nav a {
            color: #bbdefb;
        }

        .dark-theme nav a:hover {
            background-color: #333;
            color: #e3f2fd;
        }

        .dark-theme header {
            border-bottom: 1px solid #333;
        }

        .dark-theme .container {
            background: #1e1e1e;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .dark-theme h1 {
            color: #bbdefb;
        }

        .dark-theme p {
            color: #ccc !important;
        }

        .dark-theme label {
            color: #e0e0e0;
        }

        .dark-theme input[type="text"],
        .dark-theme textarea {
            background-color: #2c2c2c;
            color: #e0e0e0;
            border: 1px solid #444;
        }

        .dark-theme input[type="text"]::placeholder,
        .dark-theme textarea::placeholder {
            color: #888;
        }

        .dark-theme button {
            background-color: #0056b3;
        }

        .dark-theme button:hover {
            background-color: #003d82;
        }

        .dark-theme footer {
            border-top: 1px solid #333;
            color: #ccc;
        }

        /* Toggle Switch Styles */
        .toggle-container {
            text-align: center;
            margin: 10px 0;
        }

        .toggle-container label {
            font-size: 16px;
            margin-right: 10px;
            vertical-align: middle;
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
            vertical-align: middle;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: #2196F3;
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }
