  a.hyperlink-style {
            color: #0076d4;
            font-weight: 500;
            text-decoration: underline;
        }

        .profile-dropdown {
            position: relative;
            display: inline-block;
        }

        .profile-dropdown-trigger {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--color-background-light);
            min-width: 160px;
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.7);
            z-index: 1;
            right: 0;
            border-radius: 6px;
            overflow: hidden;
            margin-top: 0.5rem;
            border: 1px solid var(--color-border-dark);
            top: 30px;
        }

        .dropdown-content a {
            color: var(--color-text-primary);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .dropdown-content a:hover {
            background-color: #333333;
            color: var(--color-accent-yellow);
        }

        .profile-dropdown:hover .dropdown-content {
            display: block;
        }

        :root {
            --color-background-deep: #0a0a0a;
            /* Deepest black for body background */
            --color-background-medium: #1a1a1a;
            /* For main content area */
            --color-background-light: #242424;
            /* For sidebar, header, card backgrounds */
            --color-accent-yellow: #2563eb;
            /* Vibrant yellow for primary accents, buttons */
            --color-accent-yellow-light: #2563eb;
            /* Lighter yellow for hover */
            --color-text-primary: #e0e0e0;
            /* Off-white for main text */
            --color-text-muted: #a0a0a0;
            /* Medium gray for secondary text */
            --color-border-dark: #333333;
            /* Subtle dark border */
            --color-white: #fff;
        }

        .w-10 {
            width: 2.5rem;
        }

        .h-10 {
            height: 2.5rem;
        }