        /* Dark Mode Base Styles */
        body {
            background-image: url('../assets/img/blowing_grass.jpg');
            background-size: cover;
            background-attachment: fixed;
            color: #e0e0e0; /* Light text for contrast */
            font-family: 'Lato', sans-serif;
        }
        .card {
            background-color: #1c1c1c; /* Dark card background */
            color: #fff;
            border: none;
            margin: 30px auto; /* Center the card */
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 0 20px #00bcd4; /* Neon aqua glow */
            transition: box-shadow 0.3s ease;
            max-width: 600px;
        }
        .card:hover {
            box-shadow: 0 0 30px #00bcd4; /* Enhanced glow on hover */
        }
        .form-group label {
            color: #00bcd4; /* Aqua text color for labels */
            font-weight: bold;
        }
        .form-control {
            background-color: #111;  /* Dark background for form fields */
            color: #00bcd4; /* Aqua text color for inputs */
            border: 1px solid #555;
            padding: 10px;
            font-size: 16px;
            width: 100%;  /* Full-width fields */
            border-radius: 5px;
        }
        .form-control:focus {
            background-color: #444;
            border-color: #00bcd4;
            color: #00bcd4;
        }
        .btn-primary {
            background-color: #00bcd4;
            border: none;
            font-size: 16px;
            padding: 12px 20px;
            width: 100%;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #008c99;
        }
        footer {
            background-color: #222;
            color: #aaa;
            text-align: center;
            padding: 15px;
            position: relative;
            bottom: 0;
            width: 100%;
        }
        .table-bordered {
            border: 1px solid #444;
        }
        .table th, .table td {
            color: #00bcd4;
        }
        /* Glow effect for outer boxed area */
        .profile {
            box-shadow: 0 0 25px #00bcd4; /* Neon aqua glow */
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
        }
        
        /* Navigation Styling */
        nav {
            background-color: rgba(28, 28, 28, 0.9);
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        nav .logo {
            font-size: 24px;
            color: #00bcd4;
            text-decoration: none;
            font-weight: bold;
        }

        nav ul {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            margin-left: 20px;
        }

        nav ul li a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: #00bcd4;
            font-weight: bold;
        }

        /* Mobile Navigation */
        .menubutton {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
        }

        .menubutton img {
            width: 24px;
            height: 24px;
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(28, 28, 28, 0.9);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 10px 0;
                text-align: center;
            }

            .menubutton {
                display: block;
            }
        }
        /* Provider List Styling */
        .provider-list {
            list-style: none;
            padding: 0;
        }
        .provider-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .provider-image {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid #00bcd4;
        }
        .provider-info {
            color: #00bcd4;
        }
        .provider-info span {
            font-weight: bold;
        }

        /* Styling for checkboxes and labels */
        .provider-check {
            margin-bottom: 10px;
        }
        .provider-check input[type="checkbox"] {
            margin-right: 10px;
        }
        
    	/* Footer */
        footer {
            background-color: rgba(28, 28, 28, 0.95);
            color: #00bcd4;
            text-align: center;
            padding: 20px 0;
            box-shadow: 0 0 10px #00bcd4;
            margin-top: auto; /* Keeps footer at the bottom */
        }

        footer a {
            color: #00bcd4;
        }