        /* Global typography: modern system stack */
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                         "Helvetica Neue", Arial, sans-serif;
        }

        .profile-dropdown-toggle {
            border-radius: 999px;
            padding: 3px 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #e5e7eb;
            background-color: #ffffff;
            color: #111827;
            box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
            transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
        }

        .profile-dropdown-toggle:hover {
            background-color: #f3f4f6;
            box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
            transform: translateY(-1px);
        }

        .profile-avatar-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #3736c4;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
        }

        .profile-toggle-name {
            font-size: 14px;
            font-weight: 500;
            max-width: 140px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .profile-toggle-caret {
            font-size: 12px;
            color: #6b7280;
        }

        .profile-dropdown-menu {
            min-width: 280px;
            padding: 12px 0;
            border-radius: 14px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
        }

        .profile-dropdown-header {
            padding: 4px 16px 10px;
        }

        .profile-dropdown-header small {
            display: block;
            color: #9ca3af;
            margin-bottom: 4px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .profile-dropdown-header .profile-name {
            font-size: 15px;
            font-weight: 600;
            color: #111827;
            letter-spacing: 0.01em;
        }

        .profile-dropdown-header .profile-email {
            font-size: 13px;
            font-weight: 400;
            color: #6b7280;
        }

        .profile-dropdown-section-title {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #9ca3af;
            padding: 4px 16px 2px;
        }

        .profile-dropdown-menu .dropdown-item {
            font-size: 14px;
            font-weight: 400;
            padding: 7px 16px;
            color: #111827;
        }

        .profile-dropdown-menu .dropdown-item:hover {
            background-color: #f3f4f6;
        }

        @media (max-width: 576px) {
            .profile-toggle-name {
                display: none;
            }
        }
		
		    footer a {
        text-decoration: none !important;
        font-size: 15px;
        font-weight: 500;
        color: #fff !important;
    }
    footer a:hover {
        opacity: 0.8;
    }

    /* Make the paragraph below the logo white */
    .doc_about_widget p {
        color: #fff !important;
        font-size: 15px;
        font-weight: 500;
    }