 /* Profile Icon Style */
        .profile-icon {
            width: 50px;
            height: 50px;
            background-color: #007bff;
            border-radius: 50%;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            cursor: pointer;
        }
        .profile-dropdown {
            display: none;
            position: absolute;
            top: 60px;
            right: 10px;
            background-color: white;
            border: 1px solid #ddd;
            box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
            padding: 10px;
            width: 250px;
        }
        .profile-dropdown.active {
            display: block;
        }
        .profile-dropdown p {
            margin: 5px 0;
            font-size: 14px;
        }
        .profile-dropdown .logout-btn {
            background-color: #ff4c4c;
            color: white;
            padding: 8px;
            width: 100%;
            text-align: center;
            cursor: pointer;
            border: none;
            border-radius: 4px;
        }